summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r--bitbake/lib/bb/cache.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index afd373da9b..b90d488b99 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -556,6 +556,9 @@ class Cache(object):
556 if virtualfn not in self.depends_cache: 556 if virtualfn not in self.depends_cache:
557 logger.debug(2, "Cache: %s is not cached", virtualfn) 557 logger.debug(2, "Cache: %s is not cached", virtualfn)
558 invalid = True 558 invalid = True
559 elif len(self.depends_cache[virtualfn]) != len(self.caches_array):
560 logger.debug(2, "Cache: Extra caches missing for %s?" % virtualfn)
561 invalid = True
559 562
560 # If any one of the variants is not present, mark as invalid for all 563 # If any one of the variants is not present, mark as invalid for all
561 if invalid: 564 if invalid: