From ec5473cd43f0c60455bb5c957cb74c1ef83e0a0e Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 30 Nov 2007 07:21:13 +0000 Subject: [PATCH] Make config.environ() export PKGDIR to the ebuild environment during the "package" phase since it's currently referenced there. (trunk r8759) svn path=/main/branches/2.1.2/; revision=8760 --- pym/portage.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pym/portage.py b/pym/portage.py index b3d5baf7f..152cb3e24 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -2545,6 +2545,13 @@ class config: 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): -- 2.26.2