summaryrefslogtreecommitdiffstats
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-22 16:54:36 +0000
commit55de04d1470e6c04ae2859621414697ec5d428e3 (patch)
treebd347ec8073f22e556bf7a589cc771a5b9bcc203 /meta/recipes-support
parent224b0c313009e9c64f324bcd2a19cf65e7b36a9e (diff)
downloadpoky-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/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=""
23inherit autotools binconfig pkgconfig 23inherit autotools binconfig pkgconfig
24 24
25do_configure() { 25do_configure() {
26 gnu-configize 26 ( cd ${S}; gnu-configize )
27 autoconf 27 ( cd ${S}; autoconf )
28 oe_runconf 28 oe_runconf
29} 29}