summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Stelling <blubb@gentoo.org>2006-08-27 19:46:27 +0000
committerSimon Stelling <blubb@gentoo.org>2006-08-27 19:46:27 +0000
commit2ce07ad4be04dfef844694b28fa4f29b8b1a2df6 (patch)
tree9ed1d0033e84bcc13def352634d923923c9efe70 /bin/misc-functions.sh
parentmake the multilib-strict check show all files that violate the rule, not just... (diff)
downloadportage-multirepo-2ce07ad4be04dfef844694b28fa4f29b8b1a2df6.tar.gz
portage-multirepo-2ce07ad4be04dfef844694b28fa4f29b8b1a2df6.tar.bz2
portage-multirepo-2ce07ad4be04dfef844694b28fa4f29b8b1a2df6.zip
let's not fork too much
svn path=/main/trunk/; revision=4355
Diffstat (limited to 'bin/misc-functions.sh')
-rwxr-xr-xbin/misc-functions.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh
index 8b6d88e9..d68eee4e 100755
--- a/bin/misc-functions.sh
+++ b/bin/misc-functions.sh
@@ -204,8 +204,8 @@ install_qa_check() {
for dir in ${MULTILIB_STRICT_DIRS}; do
[ -d "${D}/${dir}" ] || continue
for file in $(find ${D}/${dir} -type f | grep -v "^${D}/${dir}/${MULTILIB_STRICT_EXEMPT}"); do
- if $(file ${file} | egrep -q "${MULTILIB_STRICT_DENY}") ; then
- if [[ ${firstrun} == "yes" ]] ; then
+ if file ${file} | egrep -q "${MULTILIB_STRICT_DENY}" ; then
+ if [[ ${firstrun} == yes ]] ; then
echo "Files matching a file type that is not allowed:"
firstrun=no
fi