From: Zac Medico Date: Wed, 16 Apr 2008 18:09:27 +0000 (-0000) Subject: Fix portdbapi.getfetchlist() so that it doesn't unnecessarily calculate X-Git-Tag: v2.1.5~164 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=13185ed903957683254bedac2862110cddf348d4;p=portage.git Fix portdbapi.getfetchlist() so that it doesn't unnecessarily calculate USE when the "all" parameter is True. (trunk r9918) svn path=/main/branches/2.1.2/; revision=9919 --- diff --git a/pym/portage.py b/pym/portage.py index fcdf6e589..aa8aa946f 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -7455,7 +7455,7 @@ class portdbapi(dbapi): "getfetchlist(): '%s' has unsupported EAPI: '%s'" % \ (mypkg, eapi.lstrip("-"))) - if useflags is None: + if not all and useflags is None: mysettings.setcpv(mypkg, mydb=self) useflags = mysettings["PORTAGE_USE"].split()