diff options
author | Zac Medico <zmedico@gentoo.org> | 2008-04-16 18:08:41 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2008-04-16 18:08:41 +0000 |
commit | 35e5407120441f60f6e77e6544e12e3c56cbacc8 (patch) | |
tree | a67d622123060002a154888e70be8b0b248e805a | |
parent | 6b3d6b62702b772ad7e20dbae604f9a61da2218d (diff) | |
download | portage-35e5407120441f60f6e77e6544e12e3c56cbacc8.tar.gz portage-35e5407120441f60f6e77e6544e12e3c56cbacc8.tar.bz2 portage-35e5407120441f60f6e77e6544e12e3c56cbacc8.zip |
Fix portdbapi.getfetchlist() so that it doesn't unnecessarily calculate
USE when the "all" parameter is True.
svn path=/main/trunk/; revision=9918
-rw-r--r-- | pym/portage/dbapi/porttree.py | 2 |
1 files changed, 1 insertions, 1 deletions
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() |