diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-21 14:25:18 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-22 16:54:36 +0000 |
commit | 55de04d1470e6c04ae2859621414697ec5d428e3 (patch) | |
tree | bd347ec8073f22e556bf7a589cc771a5b9bcc203 /meta/recipes-support | |
parent | 224b0c313009e9c64f324bcd2a19cf65e7b36a9e (diff) | |
download | 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/recipes-support')
-rw-r--r-- | meta/recipes-support/pth/pth_2.0.7.bb | 4 |
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="" | |||
23 | inherit autotools binconfig pkgconfig | 23 | inherit autotools binconfig pkgconfig |
24 | 24 | ||
25 | do_configure() { | 25 | do_configure() { |
26 | gnu-configize | 26 | ( cd ${S}; gnu-configize ) |
27 | autoconf | 27 | ( cd ${S}; autoconf ) |
28 | oe_runconf | 28 | oe_runconf |
29 | } | 29 | } |