From: Zac Medico Date: Fri, 27 Aug 2010 21:39:39 +0000 (-0700) Subject: Fix the config constructor to pass missing parameters to the X-Git-Tag: v2.2_rc70~7 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=62e88e3e97a3518bf46e78593d631b711e990555;p=portage.git Fix the config constructor to pass missing parameters to the LocationsManager constructor. --- diff --git a/pym/portage/package/ebuild/config.py b/pym/portage/package/ebuild/config.py index ac217bb94..72a7b65e7 100644 --- a/pym/portage/package/ebuild/config.py +++ b/pym/portage/package/ebuild/config.py @@ -274,8 +274,9 @@ class config(object): self._expand_map = copy.deepcopy(clone._expand_map) else: - locations_manager = LocationsManager(eprefix=eprefix, config_profile_path=config_profile_path, \ - local_config=local_config) + locations_manager = LocationsManager(config_root=config_root, + config_profile_path=config_profile_path, eprefix=eprefix, + local_config=local_config, target_root=target_root) eprefix = locations_manager.eprefix config_root = locations_manager.config_root