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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 8485eb467a..55283b03d6 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -785,7 +785,7 @@ class MultiProcessCache(object):
785 data = [{}] 785 data = [{}]
786 return data 786 return data
787 787
788 def save_extras(self, d): 788 def save_extras(self):
789 if not self.cachefile: 789 if not self.cachefile:
790 return 790 return
791 791
@@ -815,7 +815,7 @@ class MultiProcessCache(object):
815 if h not in dest[j]: 815 if h not in dest[j]:
816 dest[j][h] = source[j][h] 816 dest[j][h] = source[j][h]
817 817
818 def save_merge(self, d): 818 def save_merge(self):
819 if not self.cachefile: 819 if not self.cachefile:
820 return 820 return
821 821