summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-06-10 10:12:51 +0000
committerZac Medico <zmedico@gentoo.org>2007-06-10 10:12:51 +0000
commit1a8487164c51048f42331fd2e2b606ff10573304 (patch)
tree7b89eef34b08d0d79067e0e24482a96b78c21f82 /pym/portage.py
parent48f5b7eae5a9e8bca89958a36b0c8204b2659f59 (diff)
downloadportage-1a8487164c51048f42331fd2e2b606ff10573304.tar.gz
portage-1a8487164c51048f42331fd2e2b606ff10573304.tar.bz2
portage-1a8487164c51048f42331fd2e2b606ff10573304.zip
Preserve order of flags from IUSE in wildcard expansion. (trunk r6786)
svn path=/main/branches/2.1.2/; revision=6787
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index f34ff5887..c53faafd0 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -1962,7 +1962,7 @@ class config:
# Use the calculated USE flags to regenerate the USE_EXPAND flags so
# that they are consistent.
iuse = self.configdict["pkg"].get("IUSE","").split()
- iuse = set([ x.lstrip("+-") for x in iuse ])
+ iuse = [ x.lstrip("+-") for x in iuse ]
for var in use_expand:
prefix = var.lower() + "_"
prefix_len = len(prefix)