From: Gary Thomas Date: Wed, 29 Sep 2010 15:25:47 +0000 (+0100) Subject: e2fsprogs: Don't change ownership of the patches directory X-Git-Tag: 2011-1~4435 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=5f289ac80f81681f1d31e8637ceeeb5217aa40ca;p=openembedded-core.git e2fsprogs: Don't change ownership of the patches directory Patches can be symlinks and changing their ownership may not be possible. Therefore stop doing this. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.41.12.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.41.12.bb index 15c80478f5..ac262501d1 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.41.12.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.41.12.bb @@ -17,7 +17,7 @@ do_configure_prepend () { } do_compile_prepend () { - find ./ -print|xargs chmod u=rwX + find ./ -print | grep -v ./patches | xargs chmod u=rwX ( cd util; ${BUILD_CC} subst.c -o subst ) }