From: Zac Medico Date: Fri, 9 Mar 2007 03:57:59 +0000 (-0000) Subject: Use the full atoms from the system set, since profile masking does not automatically... X-Git-Tag: v2.2_pre1~1593 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=605236c9fe398a961c54845622e17009b1abeb7f;p=portage.git Use the full atoms from the system set, since profile masking does not automatically constrain the matches anymore. svn path=/main/trunk/; revision=6196 --- diff --git a/pym/emerge/__init__.py b/pym/emerge/__init__.py index 663a3a432..8c2eaf4aa 100644 --- a/pym/emerge/__init__.py +++ b/pym/emerge/__init__.py @@ -2162,7 +2162,7 @@ class depgraph: else: #world mode worldlist = getlist(self.settings, "world") - sysdict = genericdict(getlist(self.settings, "system")) + mylist = getlist(self.settings, "system") worlddict=genericdict(worldlist) for x in worlddict.keys(): @@ -2171,9 +2171,7 @@ class depgraph: elif not self.trees[self.target_root]["vartree"].dbapi.match(x): world_problems = True else: - sysdict[x]=worlddict[x] - - mylist = sysdict.keys() + mylist.append(x) newlist = [] for atom in mylist: