summaryrefslogtreecommitdiffstats
path: root/pym/_emerge/EbuildProcess.py
diff options
context:
space:
mode:
authorSebastian Luther <SebastianLuther@gmx.de>2010-04-09 19:29:22 +0200
committerZac Medico <zmedico@gentoo.org>2010-04-10 14:06:48 -0700
commit2339fbb2fc4f54161787afebb768d60afc3511ba (patch)
treea19ebdcf6c5c48a3590e6802390315f3c4cce251 /pym/_emerge/EbuildProcess.py
parentdef1566b00be9350e945f8162d6be758b15dc4dc (diff)
downloadportage-2339fbb2fc4f54161787afebb768d60afc3511ba.tar.gz
portage-2339fbb2fc4f54161787afebb768d60afc3511ba.tar.bz2
portage-2339fbb2fc4f54161787afebb768d60afc3511ba.zip
Implement REPLACING_VERSIONS and REPLACED_BY_VERSION
Diffstat (limited to 'pym/_emerge/EbuildProcess.py')
-rw-r--r--pym/_emerge/EbuildProcess.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/_emerge/EbuildProcess.py b/pym/_emerge/EbuildProcess.py
index 255f7c553..bf7af4b9d 100644
--- a/pym/_emerge/EbuildProcess.py
+++ b/pym/_emerge/EbuildProcess.py
@@ -23,6 +23,7 @@ class EbuildProcess(AbstractEbuildProcess):
root_config = self.pkg.root_config
tree = self.tree
mydbapi = root_config.trees[tree].dbapi
+ vartree = root_config.trees["vartree"]
settings = self.settings
ebuild_path = settings["EBUILD"]
debug = settings.get("PORTAGE_DEBUG") == "1"
@@ -30,7 +31,7 @@ class EbuildProcess(AbstractEbuildProcess):
rval = doebuild(ebuild_path, self.phase,
root_config.root, settings, debug,
- mydbapi=mydbapi, tree=tree, **kwargs)
+ mydbapi=mydbapi, tree=tree, vartree=vartree, **kwargs)
return rval