aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-21 14:25:18 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-21 17:04:56 +0000
commitafeea8a616ea43553a7cd6c160d5f8b23ddcfa38 (patch)
tree31fec49b550ad9e53afa8a73a2f46d7cca9002d9 /meta/recipes-support
parenta0f054a733afb6dd6b1f53d304caefe90727d7a3 (diff)
downloadopenembedded-core-afeea8a616ea43553a7cd6c160d5f8b23ddcfa38.tar.gz
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r--meta/recipes-support/pth/pth_2.0.7.bb4
1 files changed, 2 insertions, 2 deletions
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
}