summaryrefslogtreecommitdiff
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-03-01 04:56:44 +0000
committerZac Medico <zmedico@gentoo.org>2010-03-01 04:56:44 +0000
commit949c3f6ef45d95e793cd4b26140e372a55077a80 (patch)
treea9d17849b557fd221643903b9eb2948dbb27bf99 /pym
parentRemove redundant eerror import. (diff)
downloadportage-idfetch-949c3f6ef45d95e793cd4b26140e372a55077a80.tar.gz
portage-idfetch-949c3f6ef45d95e793cd4b26140e372a55077a80.tar.bz2
portage-idfetch-949c3f6ef45d95e793cd4b26140e372a55077a80.zip
Call stack_lists on profile_only_variables for incremental processing.
svn path=/main/trunk/; revision=15507
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/package/ebuild/config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/ebuild/config.py
index 69952163..390f7b09 100644
--- a/pym/portage/package/ebuild/config.py
+++ b/pym/portage/package/ebuild/config.py
@@ -722,6 +722,7 @@ class config(object):
# Don't allow the user to override certain variables in make.conf
profile_only_variables = self.configdict["defaults"].get(
"PROFILE_ONLY_VARIABLES", "").split()
+ profile_only_variables = stack_lists([profile_only_variables])
for k in profile_only_variables:
self.mygcfg.pop(k, None)