diff options
author | Richard Purdie <richard@openedhand.com> | 2008-04-28 23:23:02 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-04-28 23:23:02 +0000 |
commit | 01daae9a5dc72c7ea82965a40f0c5a671dbaf79a (patch) | |
tree | 2d8285ba47e6b6051b81b957776408f323a3ced5 | |
parent | 6a64dc642b8e505a564f21f8fae1aedcf18ca4ec (diff) | |
download | openembedded-core-01daae9a5dc72c7ea82965a40f0c5a671dbaf79a.tar.gz openembedded-core-01daae9a5dc72c7ea82965a40f0c5a671dbaf79a.tar.bz2 openembedded-core-01daae9a5dc72c7ea82965a40f0c5a671dbaf79a.zip |
scripts/poky-autobuild-postprocess: Ignore chmod failures
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4368 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rwxr-xr-x | scripts/poky-autobuild-postprocess | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/poky-autobuild-postprocess b/scripts/poky-autobuild-postprocess index 9edc52561a..d9ba72d14d 100755 --- a/scripts/poky-autobuild-postprocess +++ b/scripts/poky-autobuild-postprocess @@ -119,5 +119,5 @@ done if [ -e ./images-complete ]; then touch $DEST/complete fi -chmod a+w -R $DEST +chmod a+w -R $DEST || true |