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-21 17:04:56 +0000 |
commit | afeea8a616ea43553a7cd6c160d5f8b23ddcfa38 (patch) | |
tree | 31fec49b550ad9e53afa8a73a2f46d7cca9002d9 | |
parent | a0f054a733afb6dd6b1f53d304caefe90727d7a3 (diff) | |
download | openembedded-core-afeea8a616ea43553a7cd6c160d5f8b23ddcfa38.tar.gz openembedded-core-afeea8a616ea43553a7cd6c160d5f8b23ddcfa38.tar.bz2 openembedded-core-afeea8a616ea43553a7cd6c160d5f8b23ddcfa38.zip |
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>
-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="" inherit autotools binconfig pkgconfig do_configure() { - gnu-configize - autoconf + ( cd ${S}; gnu-configize ) + ( cd ${S}; autoconf ) oe_runconf } |