From patchwork Thu Dec 9 16:11:00 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: meta-toolchain: fix directories rights Date: Thu, 09 Dec 2010 16:11:00 -0000 From: Eric BENARD X-Patchwork-Id: 34 Message-Id: <1291911060-8451-1-git-send-email-eric@eukrea.com> To: openembedded-devel@lists.openembedded.org Actual sdk change rights of /usr and /usr/local to 775 when untaring the archives with sudo ... giving group write access to these directories. This patch fix the rights before creating the archive. Signed-off-by: Eric Bénard Acked-by: Khem Raj --- recipes/meta/meta-toolchain.bb | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/recipes/meta/meta-toolchain.bb b/recipes/meta/meta-toolchain.bb index 82918ad..e949432 100644 --- a/recipes/meta/meta-toolchain.bb +++ b/recipes/meta/meta-toolchain.bb @@ -171,8 +171,10 @@ do_populate_sdk() { # Package it up mkdir -p ${SDK_DEPLOY} cd ${SDK_OUTPUT} + chmod -R go-w ${SDK_OUTPUT} fakeroot tar cfj ${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}.tar.bz2 . cd ${SDK_OUTPUT2} + chmod -R go-w ${SDK_OUTPUT2} fakeroot tar cfj ${SDK_DEPLOY}/${TOOLCHAIN_OUTPUTNAME}-extras.tar.bz2 . }