From: Richard Purdie Date: Thu, 21 Mar 2013 14:25:18 +0000 (+0000) Subject: pth: Fix case where ${B} != ${S} X-Git-Tag: 2015-4~7127 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=afeea8a616ea43553a7cd6c160d5f8b23ddcfa38;p=openembedded-core.git pth: Fix case where ${B} != ${S} Ensure the autotools commands are executed in ${S} to allow out of tree builds to work. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-support/pth/pth_2.0.7.bb b/meta/recipes-support/pth/pth_2.0.7.bb index fc9ed16aca..8cbab7d822 100644 --- a/meta/recipes-support/pth/pth_2.0.7.bb +++ b/meta/recipes-support/pth/pth_2.0.7.bb @@ -23,7 +23,7 @@ PARALLEL_MAKE="" inherit autotools binconfig pkgconfig do_configure() { - gnu-configize - autoconf + ( cd ${S}; gnu-configize ) + ( cd ${S}; autoconf ) oe_runconf }