summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/siggen.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index 3b017219ed..f9c4798e3d 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -49,8 +49,9 @@ 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 self.taskhash[fn + "." + task] = "0" 52 k = fn + "." + task
53 return self.taskhash[fn + "." + task] 53 self.taskhash[k] = hashlib.sha256(k.encode("utf-8")).hexdigest()
54 return self.taskhash[k]
54 55
55 def writeout_file_checksum_cache(self): 56 def writeout_file_checksum_cache(self):
56 """Write/update the file checksum cache onto disk""" 57 """Write/update the file checksum cache onto disk"""