From: Zac Medico Date: Tue, 8 Aug 2006 03:13:07 +0000 (-0000) Subject: Remove unnecessary check for USE flags that start with "-". X-Git-Tag: v2.1.1~81 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2d924d424dbf1485434f5bea993aab6505418174;p=portage.git Remove unnecessary check for USE flags that start with "-". svn path=/main/trunk/; revision=4191 --- diff --git a/pym/portage.py b/pym/portage.py index eac43287d..1d31065fe 100644 --- 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()