diff options
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index d34c45bcf..d0734b458 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1453,7 +1453,7 @@ class config: if self.has_key(var): for x in string.split(self[var]): mystr = string.lower(var)+"_"+x - if mystr not in usesplit: + if mystr not in usesplit and mystr not in self.usemask: usesplit.append(mystr) # Pre-Pend ARCH variable to USE settings so '-*' in env doesn't kill arch. |