summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-04-13 04:13:42 +0000
committerZac Medico <zmedico@gentoo.org>2007-04-13 04:13:42 +0000
commit6d7b3fff606367ac95839d5e59379b23704bd72c (patch)
treec1019f1fffcf7ad56f1392d318c223667a8a1ef0 /pym
parent27684e2bc3550795a90e070eefb904b64f529592 (diff)
downloadportage-6d7b3fff606367ac95839d5e59379b23704bd72c.tar.gz
portage-6d7b3fff606367ac95839d5e59379b23704bd72c.tar.bz2
portage-6d7b3fff606367ac95839d5e59379b23704bd72c.zip
Use a config instance that's not locked/immutable.
svn path=/main/trunk/; revision=6383
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/porttree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py
index 11182d1c1..ad6ccc45a 100644
--- a/pym/portage/dbapi/porttree.py
+++ b/pym/portage/dbapi/porttree.py
@@ -700,8 +700,8 @@ class portdbapi(dbapi):
match=1
uselist = []
if "?" in licenses:
- self.mysettings.setcpv(mycpv, mydb=self)
- uselist = self.mysettings.get("USE", "").split()
+ self.doebuild_settings.setcpv(mycpv, mydb=self)
+ uselist = self.doebuild_settings.get("USE", "").split()
try:
if self.mysettings.getMissingLicenses(
licenses, mycpv, uselist):