summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-05-16 17:05:39 +0000
committerZac Medico <zmedico@gentoo.org>2007-05-16 17:05:39 +0000
commitca1947cd9295a0a094e8eaf4503eebb3c1ecebd9 (patch)
treea33a773acb998b8676dde15b073232eb30aa9e01 /pym
parent541d1c00f3b593d1c393bf3698ceeeb1a45cf140 (diff)
downloadportage-ca1947cd9295a0a094e8eaf4503eebb3c1ecebd9.tar.gz
portage-ca1947cd9295a0a094e8eaf4503eebb3c1ecebd9.tar.bz2
portage-ca1947cd9295a0a094e8eaf4503eebb3c1ecebd9.zip
Don't protect USE_EXPAND variables from -* anymore because the really critical ones should all be in use.force now (typically kernel_linux, elibc_glibc, and userland_GNU).
svn path=/main/trunk/; revision=6540
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index c76263899..cf27256aa 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -1961,7 +1961,7 @@ class config:
mysplit = curdb["USE"].split()
for x in mysplit:
if x == "-*":
- myflags = use_expand_protected[:]
+ myflags = []
continue
if x[0] == "+":