summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 3edd80ec3b..5adce594f0 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -419,6 +419,9 @@ class Cache(object):
419 419
420 def add_info(self, filename, info, cacheData, parsed=None): 420 def add_info(self, filename, info, cacheData, parsed=None):
421 cacheData.add_from_recipeinfo(filename, info) 421 cacheData.add_from_recipeinfo(filename, info)
422 if not self.has_cache:
423 return
424
422 if 'SRCREVINACTION' not in info.pv and not info.nocache: 425 if 'SRCREVINACTION' not in info.pv and not info.nocache:
423 if parsed: 426 if parsed:
424 self.cacheclean = False 427 self.cacheclean = False