From: Zac Medico Date: Fri, 29 Jan 2010 18:52:44 +0000 (-0000) Subject: Bug #300378 - Don't export FILESDIR to the 'depend' phase. (trunk r15217) X-Git-Tag: v2.1.7.17~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c735f561583291f729920e20675645d28d882ece;p=portage.git Bug #300378 - Don't export FILESDIR to the 'depend' phase. (trunk r15217) svn path=/main/branches/2.1.7/; revision=15267 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 8ee7fb3a2..3f0c00a40 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3781,6 +3781,9 @@ class config(object): mydict.pop("EPREFIX", None) mydict.pop("EROOT", None) + if phase == 'depend': + mydict.pop('FILESDIR', None) + return mydict def thirdpartymirrors(self):