projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
652e9d8
)
Call use_reduce() with matchall=1 when checking depstrings. Otherwise it's
author
Zac Medico
<zmedico@gentoo.org>
Thu, 26 Jun 2008 21:36:17 +0000
(21:36 -0000)
committer
Zac Medico
<zmedico@gentoo.org>
Thu, 26 Jun 2008 21:36:17 +0000
(21:36 -0000)
possible for invalid deps to be ignored. Thanks to grobian for reporting.
svn path=/main/trunk/; revision=10807
bin/repoman
patch
|
blob
|
history
diff --git
a/bin/repoman
b/bin/repoman
index e654495813c597ba201c186752b29e5a8d7f8753..51c2ae2d7ac6c709f799a441007abbb06f9722e8 100755
(executable)
--- 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))