From: Jason Stubbs Date: Thu, 29 Sep 2005 16:32:12 +0000 (-0000) Subject: Adhere to USE flags passed into fetch() X-Git-Tag: v2.0.53_rc4_2111~45 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=0ffd5f078e0ac8ab317bd13d14e4c320f8315a78;p=portage.git Adhere to USE flags passed into fetch() svn path=/main/branches/2.0/; revision=2050 --- diff --git a/pym/portage.py b/pym/portage.py index b54bb242a..aa6b89517 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -5457,7 +5457,8 @@ class portdbapi(dbapi): print red("getfetchlist():")+" aux_get() error reading "+mypkg+"; aborting." sys.exit(1) - useflags = string.split(mysettings["USE"]) + if useflags is None: + useflags = string.split(mysettings["USE"]) myurilist = portage_dep.paren_reduce(myuris) myurilist = portage_dep.use_reduce(myurilist,uselist=useflags,matchall=all)