From: Zac Medico Date: Fri, 29 Jan 2010 16:40:08 +0000 (-0000) Subject: Bug #300378 - Don't export FILESDIR to the 'depend' phase. X-Git-Tag: v2.2_rc62~5 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=297d7590ddea0f71cbe2e94ac95a56ead4df478e;p=portage.git Bug #300378 - Don't export FILESDIR to the 'depend' phase. svn path=/main/trunk/; revision=15217 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 5f62fd7ae..233bf7ed1 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):