summaryrefslogtreecommitdiffstats
path: root/bin/misc-functions.sh
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-06-21 02:06:59 +0000
committerZac Medico <zmedico@gentoo.org>2006-06-21 02:06:59 +0000
commit14e23092b6892a094e8029f27b4f2276e442b1e6 (patch)
treec9ffae3975eda6ddc8717e99aa43ef0a7e61100d /bin/misc-functions.sh
parent29a6f79162705e8c0180ec9b49adc517807f9810 (diff)
downloadportage-14e23092b6892a094e8029f27b4f2276e442b1e6.tar.gz
portage-14e23092b6892a094e8029f27b4f2276e442b1e6.tar.bz2
portage-14e23092b6892a094e8029f27b4f2276e442b1e6.zip
Remove QA warning when files are installed with portage uid/gid for bug #136313. This patch is from trunk r3488.
svn path=/main/branches/2.1/; revision=3560
Diffstat (limited to 'bin/misc-functions.sh')
-rwxr-xr-xbin/misc-functions.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index abdc7d6e0..27adaa0d9 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -186,12 +186,10 @@ install_qa_check() {
local find_log="${T}/find-portage-log"
find "${D}"/ -user portage -print0 > "${find_log}"
if [[ -s ${find_log} ]] ; then
- ewarn "QA Notice: Files were installed with user portage!"
xargs -0 chown -h ${PORTAGE_INST_UID:-0} < "${find_log}"
fi
find "${D}"/ -group portage -print0 > "${find_log}"
if [[ -s ${find_log} ]] ; then
- ewarn "QA Notice: Files were installed with group portage!"
xargs -0 chgrp -h ${PORTAGE_INST_GID:-0} < "${find_log}"
fi
rm -f "${find_log}"