From: Zac Medico Date: Thu, 26 Jun 2008 21:36:17 +0000 (-0000) Subject: Call use_reduce() with matchall=1 when checking depstrings. Otherwise it's X-Git-Tag: v2.2_rc2~314 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b8a61b227d537dc126156917192b04fa57a954a3;p=portage.git Call use_reduce() with matchall=1 when checking depstrings. Otherwise it's possible for invalid deps to be ignored. Thanks to grobian for reporting. svn path=/main/trunk/; revision=10807 --- diff --git a/bin/repoman b/bin/repoman index e65449581..51c2ae2d7 100755 --- a/bin/repoman +++ b/bin/repoman @@ -1249,7 +1249,7 @@ for x in scanlist: mydeplist = [] try: - portage.dep.use_reduce(mydeplist, excludeall=myiuse) + portage.dep.use_reduce(mydeplist, matchall=1) except portage.exception.InvalidDependString, e: badsyntax.append(str(e))