summaryrefslogtreecommitdiffstats
path: root/pym/portage.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-09-26 04:23:11 +0000
committerZac Medico <zmedico@gentoo.org>2007-09-26 04:23:11 +0000
commitb67aa895a83eae2a6139ba77a252285c18ea379d (patch)
tree09bdd8f02a9505176237611ac6831bfa26eead09 /pym/portage.py
parent977598fd054ef4e9349e7ca8ea648ebd7dfb7663 (diff)
downloadportage-b67aa895a83eae2a6139ba77a252285c18ea379d.tar.gz
portage-b67aa895a83eae2a6139ba77a252285c18ea379d.tar.bz2
portage-b67aa895a83eae2a6139ba77a252285c18ea379d.zip
Mask binary packages if their CHOST does not match the one
defined in make.conf. (trunk r7792) svn path=/main/branches/2.1.2/; revision=7822
Diffstat (limited to 'pym/portage.py')
-rw-r--r--pym/portage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 28e54af7b..bc3b72411 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -5260,7 +5260,7 @@ class bindbapi(fakedbapi):
self.settings = settings
self._match_cache = {}
# Selectively cache metadata in order to optimize dep matching.
- self._aux_cache_keys = set(["SLOT"])
+ self._aux_cache_keys = set(["CHOST","SLOT"])
self._aux_cache = {}
def match(self, *pargs, **kwargs):