From: Zac Medico Date: Sun, 15 Aug 2010 08:12:11 +0000 (-0700) Subject: Make create_trees() pass along PORTAGE_GRPNAME and PORTAGE_USERNAME X-Git-Tag: v2.2_rc68~201 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=31b417292a97b00dc9ce0496296eabb5f75bdffa;p=portage.git Make create_trees() pass along PORTAGE_GRPNAME and PORTAGE_USERNAME to all config instances. --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index a6760b245..a6534b12d 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -520,7 +520,7 @@ def create_trees(config_root=None, target_root=None, trees=None): # environment to apply to the config that's associated # with ROOT != "/", so pass a nearly empty dict for the env parameter. clean_env = {} - for k in ('PATH', 'TERM'): + for k in ('PATH', 'PORTAGE_GRPNAME', 'PORTAGE_USERNAME', 'TERM'): v = settings.get(k) if v is not None: clean_env[k] = v