From: Zac Medico Date: Wed, 16 Apr 2008 18:02:48 +0000 (-0000) Subject: If the mysettings parameter is not passed in to portdbapi.getfetchlist() X-Git-Tag: v2.1.5~165 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=73b51d71a5e4e3977421f8073a89925b3268a89f;p=portage.git If the mysettings parameter is not passed in to portdbapi.getfetchlist() then substitue self.doebuild_settings since that one is mutable which is necessary in case setcpv() needs to be called. (trunk r9916) svn path=/main/branches/2.1.2/; revision=9917 --- diff --git a/pym/portage.py b/pym/portage.py index 43226d450..fcdf6e589 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -7438,7 +7438,7 @@ class portdbapi(dbapi): def getfetchlist(self, mypkg, useflags=None, mysettings=None, all=0, mytree=None): if mysettings is None: - mysettings = self.mysettings + mysettings = self.doebuild_settings try: eapi, myuris = self.aux_get(mypkg, ["EAPI", "SRC_URI"], mytree=mytree)