Gentoo Archives: gentoo-commits

From: "Marius Mauch (genone)" <genone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9998 - main/trunk/bin
Date: Sun, 27 Apr 2008 09:19:24
Message-Id: E1Jq32X-0001J3-98@stork.gentoo.org
1 Author: genone
2 Date: 2008-04-27 09:19:20 +0000 (Sun, 27 Apr 2008)
3 New Revision: 9998
4
5 Modified:
6 main/trunk/bin/misc-functions.sh
7 Log:
8 fix logic error
9
10 Modified: main/trunk/bin/misc-functions.sh
11 ===================================================================
12 --- main/trunk/bin/misc-functions.sh 2008-04-27 08:56:53 UTC (rev 9997)
13 +++ main/trunk/bin/misc-functions.sh 2008-04-27 09:19:20 UTC (rev 9998)
14 @@ -180,7 +180,7 @@
15 for path in ${opath//:/ }; do
16 [ -e "${D}/${path}/${lib}" ] && found=1
17 done
18 - [ "${found}" -gt 0 ] && rneeded="${rneeded},${lib}"
19 + [ "${found}" -eq 0 ] && rneeded="${rneeded},${lib}"
20 done
21 rneeded=${rneeded:1}
22 if [ -n "${rneeded}" ]; then
23
24 --
25 gentoo-commits@l.g.o mailing list