From f352f9f25695635bbaad09774f02e66684971fc0 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 21 Mar 2013 14:22:55 +0000 Subject: rpm: Fix case where ${B} != ${S} We need to run autogen.sh in the correct directory (${S}). Signed-off-by: Richard Purdie --- meta/recipes-devtools/rpm/rpm_5.4.9.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-devtools') diff --git a/meta/recipes-devtools/rpm/rpm_5.4.9.bb b/meta/recipes-devtools/rpm/rpm_5.4.9.bb index 6286771efa..ba24111bf7 100644 --- a/meta/recipes-devtools/rpm/rpm_5.4.9.bb +++ b/meta/recipes-devtools/rpm/rpm_5.4.9.bb @@ -360,7 +360,7 @@ do_configure() { # Disable tests! echo "all:" > ${S}/tests/Makefile.am - ${S}/autogen.sh + ( cd ${S}; ${S}/autogen.sh ) # NASTY hack to make sure configure files the right pkg-config file... sed -e 's/pkg-config --exists uuid/pkg-config --exists ossp-uuid/g' \ -- cgit 1.2.3-korg