From: Zac Medico Date: Sat, 7 Jun 2008 23:52:19 +0000 (-0000) Subject: Inside, create_trees(), pass target_root="/" into the config constructor X-Git-Tag: v2.1.5.5~22 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=029ca98a4492efb618bfdde249868060e16f51f1;p=portage.git Inside, create_trees(), pass target_root="/" into the config constructor when necessary to override the setting in make.conf. (trunk r10598) svn path=/main/branches/2.1.2/; revision=10599 --- diff --git a/pym/portage.py b/pym/portage.py index f845fc12d..9abbc53af 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -10695,7 +10695,7 @@ def create_trees(config_root=None, target_root=None, trees=None): myroots = [(settings["ROOT"], settings)] if settings["ROOT"] != "/": - settings = config(config_root=None, target_root=None, + settings = config(config_root=None, target_root="/", config_incrementals=portage_const.INCREMENTALS) # When ROOT != "/" we only want overrides from the calling # environment to apply to the config that's associated