From: Richard Purdie Date: Thu, 21 Mar 2013 14:22:55 +0000 (+0000) Subject: rpm: Fix case where ${B} != ${S} X-Git-Tag: rev_ivi_2015_02_04~13230 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=49173092107d3fa6e6d71e29960ce31cc6c37ab3;p=scm%2Fbb%2Ftizen-distro.git rpm: Fix case where ${B} != ${S} We need to run autogen.sh in the correct directory (${S}). (From OE-Core rev: f352f9f25695635bbaad09774f02e66684971fc0) Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/rpm/rpm_5.4.9.bb b/meta/recipes-devtools/rpm/rpm_5.4.9.bb index 6286771..ba24111 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' \