diff options
author | Marius Mauch <genone@gentoo.org> | 2008-04-27 09:19:20 +0000 |
---|---|---|
committer | Marius Mauch <genone@gentoo.org> | 2008-04-27 09:19:20 +0000 |
commit | 0c9f9b277dc1bfec2550ebf7a573d85fe400ef44 (patch) | |
tree | a74f74c7789b90e8381a6bb99f28383f763a8393 | |
parent | 6b391b3ef335c0244f5bb36d0f0c0f61f1ae1a92 (diff) | |
download | portage-0c9f9b277dc1bfec2550ebf7a573d85fe400ef44.tar.gz portage-0c9f9b277dc1bfec2550ebf7a573d85fe400ef44.tar.bz2 portage-0c9f9b277dc1bfec2550ebf7a573d85fe400ef44.zip |
fix logic error
svn path=/main/trunk/; revision=9998
-rwxr-xr-x | bin/misc-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |