From 66c6200ff34e8eeca5d1a689bbf9d6a83818248f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 6 Jan 2011 19:47:00 +0000 Subject: bitbake build/siggen/runqueue: Fix stampfile parameters The current parameters are not useful to the stampfile generator function as they can't uniquely define a task. This updated things so the parameters can identify unique tasks. Signed-off-by: Richard Purdie --- bitbake/lib/bb/siggen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bitbake/lib/bb/siggen.py') diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py index 94ae2b48ab..7d7a203b83 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py @@ -42,7 +42,7 @@ class SignatureGenerator(object): def set_taskdata(self, hashes, deps): return - def stampfile(self, stampbase, taskname, taskhash): + def stampfile(self, stampbase, file_name, taskname): return "%s.%s" % (stampbase, taskname) class SignatureGeneratorBasic(SignatureGenerator): -- cgit v1.2.3-54-g00ecf