From: Marius Mauch Date: Sun, 27 Apr 2008 09:19:20 +0000 (-0000) Subject: fix logic error X-Git-Tag: v2.2_pre6~99 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0c9f9b277dc1bfec2550ebf7a573d85fe400ef44;p=portage.git fix logic error svn path=/main/trunk/; revision=9998 --- diff --git a/bin/misc-functions.sh b/bin/misc-functions.sh index 6bc0419e0..2486bd96c 100755 --- a/bin/misc-functions.sh +++ b/bin/misc-functions.sh @@ -180,7 +180,7 @@ install_qa_check() { for path in ${opath//:/ }; do [ -e "${D}/${path}/${lib}" ] && found=1 done - [ "${found}" -gt 0 ] && rneeded="${rneeded},${lib}" + [ "${found}" -eq 0 ] && rneeded="${rneeded},${lib}" done rneeded=${rneeded:1} if [ -n "${rneeded}" ]; then