From 5e5a7fc37c65688c7e7a57e73268fab93a367143 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Fri, 17 Jan 2014 14:13:43 +0100 Subject: bitbake: SignatureGenerator: Add empty implementation for dump_sigs * bitbake -S throws exception when 'noop' signature handler is used [YOCTO #5738] (Bitbake rev: 53352e8d388b7fc4da73f95b93dcc087e76d0426) Signed-off-by: Martin Jansa Signed-off-by: Richard Purdie --- bitbake/lib/bb/siggen.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'bitbake/lib/bb/siggen.py') diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index bb8203df05..9db29a2ecf 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py @@ -57,6 +57,8 @@ class SignatureGenerator(object): def invalidate_task(self, task, d, fn): bb.build.del_stamp(task, d, fn) + def dump_sigs(self, dataCache): + return class SignatureGeneratorBasic(SignatureGenerator): """ -- cgit v1.2.3-54-g00ecf