From: Simon Stelling Date: Sun, 27 Aug 2006 19:46:27 +0000 (-0000) Subject: let's not fork too much X-Git-Tag: v2.1.1~36 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2ce07ad4be04dfef844694b28fa4f29b8b1a2df6;p=portage.git let's not fork too much svn path=/main/trunk/; revision=4355 --- diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 8b6d88e92..d68eee4e4 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