From: Zac Medico Date: Sat, 7 Oct 2006 22:14:52 +0000 (-0000) Subject: Stack negative user virtuals in the correct order for incremental behavior. X-Git-Tag: v2.1.2~689 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5cf1a2a914a22233ae601ffbf903ac551660df56;p=portage.git Stack negative user virtuals in the correct order for incremental behavior. svn path=/main/trunk/; revision=4616 --- diff --git a/pym/portage.py b/pym/portage.py index 9fa2b4b6c..fff074035 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1746,7 +1746,8 @@ class config: self.userVirtuals = stack_dictlist([self.userVirtuals],incremental=1) # Collapse all the profile virtuals including user negations. - self.dirVirtuals = stack_dictlist([self.negVirtuals]+self.dirVirtuals,incremental=1) + self.dirVirtuals = stack_dictlist( + self.dirVirtuals + [self.negVirtuals], incremental=1) # Repoman does not use user or tree virtuals. if os.environ.get("PORTAGE_CALLER","") != "repoman":