summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--pym/portage/dbapi/porttree.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pym/portage/dbapi/porttree.py b/pym/portage/dbapi/porttree.py
index eeda30f83..14a50b126 100644
--- a/pym/portage/dbapi/porttree.py
+++ b/pym/portage/dbapi/porttree.py
@@ -117,7 +117,8 @@ class portdbapi(dbapi):
self.auxdb[x] = self.auxdbmodule(
self.depcachedir, x, filtered_auxdbkeys, gid=portage_gid)
# Selectively cache metadata in order to optimize dep matching.
- self._aux_cache_keys = set(["EAPI", "KEYWORDS", "LICENSE", "SLOT"])
+ self._aux_cache_keys = set(
+ ["EAPI", "IUSE", "KEYWORDS", "LICENSE", "SLOT"])
self._aux_cache = {}
self._broken_ebuilds = set()