diff options
author | Simon Stelling <blubb@gentoo.org> | 2006-04-16 17:44:33 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2006-04-16 17:44:33 +0000 |
commit | 6970122b60ef97f8f807a11f1ed6db22dd3f5852 (patch) | |
tree | 6dac90eea3ba88c2cdf5eddce8360431915fd424 | |
parent | 4e080eddcce9e71165f7c6c7c1d385ad5ceae687 (diff) | |
download | portage-6970122b60ef97f8f807a11f1ed6db22dd3f5852.tar.gz portage-6970122b60ef97f8f807a11f1ed6db22dd3f5852.tar.bz2 portage-6970122b60ef97f8f807a11f1ed6db22dd3f5852.zip |
fix misuse of 'cat'
svn path=/main/trunk/; revision=3163
-rw-r--r-- | bin/misc-functions.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 473f4e720..c6776807b 100644 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -188,12 +188,12 @@ install_qa_check() { find "${D}"/ -user portage -print0 > "${find_log}" if [[ -s ${find_log} ]] ; then ewarn "QA Notice: Files were installed with user portage!" - cat "${find_log}" | xargs -0 chown -h ${PORTAGE_INST_UID:-0} + 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!" - cat "${find_log}" | xargs -0 chgrp -h ${PORTAGE_INST_GID:-0} + xargs -0 chgrp -h ${PORTAGE_INST_GID:-0} < "${find_log}" fi rm -f "${find_log}" |