From 534d882dc9e0a5f75cfa1198f8cdb772900ceb15 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 30 Nov 2007 07:19:07 +0000 Subject: Make config.environ() export PKGDIR to the ebuild environment during the "package" phase since it's currently referenced there. svn path=/main/trunk/; revision=8759 --- pym/portage/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 43049fc94..9fff41623 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -2561,6 +2561,13 @@ class config(object): writemsg("*** HOME not set. Setting to "+mydict["BUILD_PREFIX"]+"\n") mydict["HOME"]=mydict["BUILD_PREFIX"][:] + if filter_calling_env: + if "package" == self.get("EBUILD_PHASE"): + for k in ("PKGDIR", ): + v = self.get(k) + if v is not None: + mydict[k] = v + return mydict def thirdpartymirrors(self): -- cgit v1.2.3-1-g7c22