summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-05-22 13:11:15 +0000
committerZac Medico <zmedico@gentoo.org>2007-05-22 13:11:15 +0000
commit741ee4675862364edf3cdaa893cfdc52fd7bb033 (patch)
treeff645d0f393e7abd55411394298b85f5e11d2bab /pym
parent0b3613205414aad1265dcafbe77a45eaef896c4c (diff)
downloadportage-741ee4675862364edf3cdaa893cfdc52fd7bb033.tar.gz
portage-741ee4675862364edf3cdaa893cfdc52fd7bb033.tar.bz2
portage-741ee4675862364edf3cdaa893cfdc52fd7bb033.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). (trunk r6539:6540)
svn path=/main/branches/2.1.2/; revision=6572
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index bbb27fc14..9a9b3bbf7 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -1894,7 +1894,7 @@ class config:
mysplit = curdb["USE"].split()
for x in mysplit:
if x == "-*":
- myflags = use_expand_protected[:]
+ myflags = []
continue
if x[0] == "+":