summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/siggen.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index fe580e487f..3b017219ed 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -49,7 +49,8 @@ class SignatureGenerator(object):
49 return self.taskhash[task] 49 return self.taskhash[task]
50 50
51 def get_taskhash(self, fn, task, deps, dataCache): 51 def get_taskhash(self, fn, task, deps, dataCache):
52 return "0" 52 self.taskhash[fn + "." + task] = "0"
53 return self.taskhash[fn + "." + task]
53 54
54 def writeout_file_checksum_cache(self): 55 def writeout_file_checksum_cache(self):
55 """Write/update the file checksum cache onto disk""" 56 """Write/update the file checksum cache onto disk"""