From: Zac Medico Date: Fri, 22 Oct 2010 20:16:00 +0000 (-0700) Subject: EbuildFetcher: fix fetch to use manifest X-Git-Tag: v2.1.9.22~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=96595cc11efa18c6da4c0a7e387ea79c9e7e6b70;p=portage.git EbuildFetcher: fix fetch to use manifest If we don't call doebuild_environment() then the 'O' variable is not set and fetch() doesn't use the manifest. --- diff --git a/pym/_emerge/EbuildFetcher.py b/pym/_emerge/EbuildFetcher.py index 7b2cdb948..cc8051642 100644 --- a/pym/_emerge/EbuildFetcher.py +++ b/pym/_emerge/EbuildFetcher.py @@ -46,6 +46,8 @@ class EbuildFetcher(SpawnProcess): settings = self.config_pool.allocate() settings.setcpv(self.pkg) + portage.doebuild_environment(ebuild_path, 'fetch', + settings=settings, db=portdb) if self.prefetch and \ self._prefetch_size_ok(uri_map, settings, ebuild_path):