diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-09 22:59:33 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-07-15 09:31:48 +0100 |
| commit | eb3ae4a13280cf2da43f7d63f08cb4cb4eebca9e (patch) | |
| tree | 62e5f6366fd6bedf1a2e5036d86ea4c18aa1c201 /bitbake/lib/bb/siggen.py | |
| parent | afc56a43b059913e81e41a2131dc05a3c390c03c (diff) | |
| download | poky-eb3ae4a13280cf2da43f7d63f08cb4cb4eebca9e.tar.gz | |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
| -rw-r--r-- | bitbake/lib/bb/siggen.py | 3 |
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""" |
