diff options
author | Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com> | 2017-08-30 15:35:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-31 23:30:04 +0100 |
commit | 49f530c2189c21942814349274539c69e4828d48 (patch) | |
tree | 9f990f36915597f1ba6e5316e3ef7623506a3a2e /bitbake/lib/bb | |
parent | fcac678c6c74185f411e8548165c824bf087d37f (diff) | |
download | poky-49f530c2189c21942814349274539c69e4828d48.tar.gz |
bitbake: siggen: Add reset to SignatureGenerator
Fix failure after commit "cooker/siggen: Reset siggen when reparsing"
(e4c6ca9440f63761560b49bbe12654441f54687e) when executing without
specifying a BB_SIGNATURE_HANDLER.
(Bitbake rev: 2a78c2d09aea0323632bbc927f370f1d3c9c249e)
Signed-off-by: Caio Marcelo de Oliveira Filho <caio.oliveira@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/siggen.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index 4380760e77..7521a3a903 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
@@ -69,6 +69,9 @@ class SignatureGenerator(object): | |||
69 | def set_taskdata(self, data): | 69 | def set_taskdata(self, data): |
70 | self.runtaskdeps, self.taskhash, self.file_checksum_values, self.taints, self.basehash = data | 70 | self.runtaskdeps, self.taskhash, self.file_checksum_values, self.taints, self.basehash = data |
71 | 71 | ||
72 | def reset(self, data): | ||
73 | return | ||
74 | |||
72 | class SignatureGeneratorBasic(SignatureGenerator): | 75 | class SignatureGeneratorBasic(SignatureGenerator): |
73 | """ | 76 | """ |
74 | """ | 77 | """ |