From: Richard Purdie Date: Tue, 9 Jul 2019 21:59:33 +0000 (+0100) Subject: bitbake: siggen: Fix default handler X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eb3ae4a13280cf2da43f7d63f08cb4cb4eebca9e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git bitbake: 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). (Bitbake rev: 7d486d3fb7176a3486f3f2484457724d7185df58) Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index fe580e487ff..3b017219ed1 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/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"""