diff options
-rw-r--r-- | pym/portage/dbapi/porttree.py | 4 |
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): |