From: Zac Medico Date: Wed, 16 Apr 2008 18:08:41 +0000 (-0000) Subject: Fix portdbapi.getfetchlist() so that it doesn't unnecessarily calculate X-Git-Tag: v2.2_pre6~147 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=35e5407120441f60f6e77e6544e12e3c56cbacc8;p=portage.git Fix portdbapi.getfetchlist() so that it doesn't unnecessarily calculate USE when the "all" parameter is True. svn path=/main/trunk/; revision=9918 --- diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py index 3ea73d00a..845fdbae5 100644 --- a/pym/portage/dbapi/porttree.py +++ b/pym/portage/dbapi/porttree.py @@ -379,7 +379,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()