diff options
author | Zac Medico <zmedico@gentoo.org> | 2007-02-03 11:16:18 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2007-02-03 11:16:18 +0000 |
commit | 9ba9195677e412a15ed59854842b689ad98227bc (patch) | |
tree | ada4677e3465847e81ffd55e756c661c1f0b41be | |
parent | 73c17b163c763f39525bc56560c8ceaa8ddb0e40 (diff) | |
download | portage-9ba9195677e412a15ed59854842b689ad98227bc.tar.gz portage-9ba9195677e412a15ed59854842b689ad98227bc.tar.bz2 portage-9ba9195677e412a15ed59854842b689ad98227bc.zip |
Fix a typo from the previos commit.
svn path=/main/trunk/; revision=5879
-rwxr-xr-x | bin/ebuild.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index e0be4c17d..d943a64a1 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -456,7 +456,7 @@ unpack() { done # Do not chmod '.' since it's probably ${WORKDIR} and PORTAGE_WORKDIR_MODE # should be preserved. - find . -mindepth 1 ! -type l -print0 | ${XARGS} chmod -f a+rX,u+w,g-w,o-w + find . -mindepth 1 ! -type l -print0 | ${XARGS} -0 chmod -f a+rX,u+w,g-w,o-w } strip_duplicate_slashes() { |