summaryrefslogtreecommitdiffstats
path: root/meta
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-22 16:54:36 +0000
commit55de04d1470e6c04ae2859621414697ec5d428e3 (patch)
treebd347ec8073f22e556bf7a589cc771a5b9bcc203 /meta
parent224b0c313009e9c64f324bcd2a19cf65e7b36a9e (diff)
downloadast2050-yocto-poky-55de04d1470e6c04ae2859621414697ec5d428e3.zip
ast2050-yocto-poky-55de04d1470e6c04ae2859621414697ec5d428e3.tar.gz
pth: Fix case where ${B} != ${S}
Ensure the autotools commands are executed in ${S} to allow out of tree builds to work. (From OE-Core rev: afeea8a616ea43553a7cd6c160d5f8b23ddcfa38) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 fc9ed16..8cbab7d 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
}
OpenPOWER on IntegriCloud