diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-21 14:23:51 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-21 17:04:56 +0000 |
commit | 6972e82b33af69cfef2d05b3637ecfd79a5125da (patch) | |
tree | 77740674bf1811fae92358e20bb4e6948743abfd /meta | |
parent | f352f9f25695635bbaad09774f02e66684971fc0 (diff) | |
download | openembedded-core-6972e82b33af69cfef2d05b3637ecfd79a5125da.tar.gz openembedded-core-6972e82b33af69cfef2d05b3637ecfd79a5125da.tar.bz2 openembedded-core-6972e82b33af69cfef2d05b3637ecfd79a5125da.zip |
pm-utils: Fix case where ${B} != ${S}
Change to the correct directory to execute gnu-configize.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-bsp/pm-utils/pm-utils_1.4.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/pm-utils/pm-utils_1.4.1.bb b/meta/recipes-bsp/pm-utils/pm-utils_1.4.1.bb index faa0e4e8b2..961d7ddd59 100644 --- a/meta/recipes-bsp/pm-utils/pm-utils_1.4.1.bb +++ b/meta/recipes-bsp/pm-utils/pm-utils_1.4.1.bb @@ -19,7 +19,7 @@ inherit pkgconfig autotools RDEPENDS_${PN} = "grep" do_configure_prepend () { - autoreconf -f -i -s + ( cd ${S}; autoreconf -f -i -s ) } FILES_${PN} += "${libdir}/${BPN}/*" |