Remove QA warning when files are installed with portage uid/gid for bug #136313.
authorZac Medico <zmedico@gentoo.org>
Sat, 10 Jun 2006 23:03:55 +0000 (23:03 -0000)
committerZac Medico <zmedico@gentoo.org>
Sat, 10 Jun 2006 23:03:55 +0000 (23:03 -0000)
svn path=/main/trunk/; revision=3488

bin/misc-functions.sh

index abdc7d6e00a44603890085d3c934394b341e97ed..27adaa0d93fb39acbd0a1c368d25b786236b7c5d 100755 (executable)
@@ -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}"