diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 02:05:01 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-18 13:17:39 +0000 |
commit | 89514049f424eddaa9e46cf4fd8c25d05a9b1c15 (patch) | |
tree | 5b78644fabaed9c13ca32a7ebeb32e2aa8c9ca2e /meta/recipes-devtools/e2fsprogs | |
parent | fb9885f0f89eef30275683510569bf0ae8463226 (diff) | |
download | openembedded-core-89514049f424eddaa9e46cf4fd8c25d05a9b1c15.tar.gz openembedded-core-89514049f424eddaa9e46cf4fd8c25d05a9b1c15.tar.bz2 openembedded-core-89514049f424eddaa9e46cf4fd8c25d05a9b1c15.zip |
e2fsprogs: Fix case where ${B} != ${S}
Fix out of tree builds by placing built objects in the correct
location.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/e2fsprogs')
-rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.7.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.7.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.7.bb index 9e22563d8b..3a4f5a891d 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.7.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.7.bb @@ -19,7 +19,7 @@ do_configure_prepend () { do_compile_prepend () { find ./ -print | grep -v ./patches | xargs chmod u=rwX - ( cd ${S}/util; ${BUILD_CC} subst.c -o subst ) + ( cd ${S}/util; ${BUILD_CC} subst.c -o ${B}/util/subst ) } do_install () { |