diff options
author | Zac Medico <zmedico@gentoo.org> | 2006-10-07 22:13:49 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2006-10-07 22:13:49 +0000 |
commit | b2384f6328e87d449250cd89b9dbe2be7b3c33e1 (patch) | |
tree | a6105705f9ffbeb40c914d310fc91e8aa71d4abd | |
parent | 4709a42d4c384594f6ed90a1ec5ffc50971c9974 (diff) | |
download | portage-b2384f6328e87d449250cd89b9dbe2be7b3c33e1.tar.gz portage-b2384f6328e87d449250cd89b9dbe2be7b3c33e1.tar.bz2 portage-b2384f6328e87d449250cd89b9dbe2be7b3c33e1.zip |
For bug #150377, make virtual preferences in a profile override the preferences of parent profiles.
svn path=/main/trunk/; revision=4615
-rw-r--r-- | pym/portage.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index eafaf46d3..9fa2b4b6c 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1731,7 +1731,6 @@ class config: # 5. profile self.dirVirtuals = [grabdict(os.path.join(x, "virtuals")) for x in myvirtdirs] - self.dirVirtuals.reverse() if self.user_profile_dir and os.path.exists(self.user_profile_dir+"/virtuals"): self.userVirtuals = grabdict(self.user_profile_dir+"/virtuals") |