projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
183c9d8
)
For bug #177211, use chmod -R on the children of the current directory in order to...
author
Zac Medico
<zmedico@gentoo.org>
Sat, 5 May 2007 18:11:14 +0000
(18:11 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Sat, 5 May 2007 18:11:14 +0000
(18:11 -0000)
svn path=/main/branches/2.1.2/; revision=6481
bin/ebuild.sh
patch
|
blob
|
history
diff --git
a/bin/ebuild.sh
b/bin/ebuild.sh
index 92f75455c3635f4f49b275986f3dd9384e62a152..bacb21b2895ea228b2256426916b563f13c6568d 100755
(executable)
--- a/
bin/ebuild.sh
+++ b/
bin/ebuild.sh
@@
-457,7
+457,8
@@
unpack() {
done
# Do not chmod '.' since it's probably ${WORKDIR} and PORTAGE_WORKDIR_MODE
# should be preserved.
- find . -mindepth 1 ! -type l -print0 | ${XARGS} -0 chmod -f a+rX,u+w,g-w,o-w
+ find . -mindepth 1 -maxdepth 1 ! -type l -print0 | \
+ ${XARGS} -0 chmod -fR a+rX,u+w,g-w,o-w
}
strip_duplicate_slashes() {