From 172095e09f3b0fc0e287aebcf922872475a9991d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 26 Mar 2014 13:47:29 +0000 Subject: bitbake: runqueue/siggen: Pass in commandline options to dump_sigs() This allows the commandline options to be processed in the dump signature code. (Bitbake rev: ef8537a2e9b48f4fe065a165c102935aee2c9029) Signed-off-by: Richard Purdie --- bitbake/lib/bb/siggen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bitbake/lib/bb/siggen.py') diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index a54357a3f3..a6d28597ed 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py @@ -59,7 +59,7 @@ class SignatureGenerator(object): def invalidate_task(self, task, d, fn): bb.build.del_stamp(task, d, fn) - def dump_sigs(self, dataCache): + def dump_sigs(self, dataCache, options): return class SignatureGeneratorBasic(SignatureGenerator): @@ -251,7 +251,7 @@ class SignatureGeneratorBasic(SignatureGenerator): pass raise err - def dump_sigs(self, dataCache): + def dump_sigs(self, dataCache, options): for fn in self.taskdeps: for task in self.taskdeps[fn]: k = fn + "." + task -- cgit v1.2.3-54-g00ecf