diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-06 19:47:00 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-01-06 19:47:03 +0000 |
commit | 66c6200ff34e8eeca5d1a689bbf9d6a83818248f (patch) | |
tree | 0742e6e9e75424890996031703cc8956b918c513 /bitbake/lib/bb/siggen.py | |
parent | ec6e4793dc79c61b780b74571db4cd66c1c04251 (diff) | |
download | poky-66c6200ff34e8eeca5d1a689bbf9d6a83818248f.tar.gz |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
-rw-r--r-- | bitbake/lib/bb/siggen.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
42 | def set_taskdata(self, hashes, deps): | 42 | def set_taskdata(self, hashes, deps): |
43 | return | 43 | return |
44 | 44 | ||
45 | def stampfile(self, stampbase, taskname, taskhash): | 45 | def stampfile(self, stampbase, file_name, taskname): |
46 | return "%s.%s" % (stampbase, taskname) | 46 | return "%s.%s" % (stampbase, taskname) |
47 | 47 | ||
48 | class SignatureGeneratorBasic(SignatureGenerator): | 48 | class SignatureGeneratorBasic(SignatureGenerator): |