aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/siggen.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-09 22:59:33 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-07-15 09:31:44 +0100
commit7d486d3fb7176a3486f3f2484457724d7185df58 (patch)
tree3d0380e231d79c7c58b07265ec59e969a00a1d3d /lib/bb/siggen.py
parent9cf7a5e5a28e676427970a821893e9d930973969 (diff)
downloadbitbake-7d486d3fb7176a3486f3f2484457724d7185df58.tar.gz
siggen: Fix default handler
After the unihash changes the default signature handler didn't work. Tweak it to adapt to those changes (allowing the runqueue tests to work). Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/siggen.py')
-rw-r--r--lib/bb/siggen.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bb/siggen.py b/lib/bb/siggen.py
index fe580e487..3b017219e 100644
--- a/lib/bb/siggen.py
+++ b/lib/bb/siggen.py
@@ -49,7 +49,8 @@ class SignatureGenerator(object):
return self.taskhash[task]
def get_taskhash(self, fn, task, deps, dataCache):
- return "0"
+ self.taskhash[fn + "." + task] = "0"
+ return self.taskhash[fn + "." + task]
def writeout_file_checksum_cache(self):
"""Write/update the file checksum cache onto disk"""