summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-11-22 05:57:20 +0000
committerZac Medico <zmedico@gentoo.org>2006-11-22 05:57:20 +0000
commit4f66169de145c84f3cd854e5ad636484668448f3 (patch)
tree61457db7d6946c8fb36a4e6748a4b7fe1f67cdb3 /bin/misc-functions.sh
parentEnable PORTAGE_CONFIGROOT to be set via an new --config-root option. Thanks ... (diff)
downloadportage-multirepo-4f66169de145c84f3cd854e5ad636484668448f3.tar.gz
portage-multirepo-4f66169de145c84f3cd854e5ad636484668448f3.tar.bz2
portage-multirepo-4f66169de145c84f3cd854e5ad636484668448f3.zip
For bug #142993, make sure that chown and chgrp calls preserve S_ISUID and S_ISGID mode bits.
svn path=/main/trunk/; revision=5114
Diffstat (limited to 'bin/misc-functions.sh')
-rwxr-xr-xbin/misc-functions.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index 3a1826e6..0d724408 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -182,17 +182,6 @@ install_qa_check() {
unset INSTALLTOD
fi
- local find_log="${T}/find-portage-log"
- find "${D}"/ -user portage -print0 > "${find_log}"
- if [[ -s ${find_log} ]] ; then
- xargs -0 chown -h ${PORTAGE_INST_UID:-0} < "${find_log}"
- fi
- find "${D}"/ -group portage -print0 > "${find_log}"
- if [[ -s ${find_log} ]] ; then
- xargs -0 chgrp -h ${PORTAGE_INST_GID:-0} < "${find_log}"
- fi
- rm -f "${find_log}"
-
# Portage regenerates this on the installed system.
if [ -f "${D}/usr/share/info/dir.gz" ]; then
rm -f "${D}/usr/share/info/dir.gz"