projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43dc33c
)
Remove unnecessary check for USE flags that start with "-".
author
Zac Medico
<zmedico@gentoo.org>
Tue, 8 Aug 2006 03:13:07 +0000
(
03:13
-0000)
committer
Zac Medico
<zmedico@gentoo.org>
Tue, 8 Aug 2006 03:13:07 +0000
(
03:13
-0000)
svn path=/main/trunk/; revision=4191
pym/portage.py
patch
|
blob
|
history
diff --git
a/pym/portage.py
b/pym/portage.py
index eac43287d771b2730de0e9e8bc071898efc2aadb..1d31065fe36d2a5361802efa8e9c92d35cefa912 100644
(file)
--- a/
pym/portage.py
+++ b/
pym/portage.py
@@
-1556,7
+1556,7
@@
class config:
if x not in myflags:
myflags.append(x)
- usesplit = [ x for x in myflags if
not x.startswith("-") and
\
+ usesplit = [ x for x in myflags if \
x not in self.usemask and x not in self.pusemask ]
usesplit.sort()