summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-04-16 18:08:41 +0000
committerZac Medico <zmedico@gentoo.org>2008-04-16 18:08:41 +0000
commit35e5407120441f60f6e77e6544e12e3c56cbacc8 (patch)
treea67d622123060002a154888e70be8b0b248e805a
parent6b3d6b62702b772ad7e20dbae604f9a61da2218d (diff)
downloadportage-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.py2
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()