From: Zac Medico Date: Mon, 1 Mar 2010 04:56:44 +0000 (-0000) Subject: Call stack_lists on profile_only_variables for incremental processing. X-Git-Tag: v2.2_rc64~17 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=949c3f6ef45d95e793cd4b26140e372a55077a80;p=portage.git Call stack_lists on profile_only_variables for incremental processing. svn path=/main/trunk/; revision=15507 --- 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)