summaryrefslogtreecommitdiffstats
path: root/pym/portage/cache/util.py
diff options
context:
space:
mode:
Diffstat (limited to 'pym/portage/cache/util.py')
-rw-r--r--pym/portage/cache/util.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/pym/portage/cache/util.py b/pym/portage/cache/util.py
index 7d81f2d05..86f93440e 100644
--- a/pym/portage/cache/util.py
+++ b/pym/portage/cache/util.py
@@ -53,13 +53,14 @@ def mirror_cache(valid_nodes_iterable, src_cache, trg_cache, eclass_cache=None,
except cache_errors.CacheError:
pass
+ for d in (entry, trg):
+ if d is not None and d.get('EAPI') in ('', '0'):
+ del d['EAPI']
+
if trg and not write_it:
""" We don't want to skip the write unless we're really sure that
the existing cache is identical, so don't trust _mtime_ and
_eclasses_ alone."""
- for d in (entry, trg):
- if "EAPI" in d and d["EAPI"] in ("", "0"):
- del d["EAPI"]
for k in set(chain(entry, trg)).difference(
("_mtime_", "_eclasses_")):
if trg.get(k, "") != entry.get(k, ""):