From: Zac Medico Date: Tue, 2 Mar 2010 21:11:02 +0000 (-0000) Subject: Call stack_lists on profile_only_variables for incremental processing. X-Git-Tag: v2.1.8~18 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3fbcb0431c2c7999fb0d6d29fdad06867fa0d665;p=portage.git Call stack_lists on profile_only_variables for incremental processing. (trunk r15507) svn path=/main/branches/2.1.7/; revision=15705 --- diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/ebuild/config.py index 699521639..390f7b09c 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)