diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-06 12:20:33 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-11-06 12:20:33 +0000 |
commit | a59935fb3a7260e2be7769a783ac907a1d73e699 (patch) | |
tree | a934d7aeed853a7a01fbba3258beda187b962d08 /bitbake/lib/bb/siggen.py | |
parent | 87c2b700bedf659b0e54ac16f9638f0461688dc9 (diff) | |
download | poky-a59935fb3a7260e2be7769a783ac907a1d73e699.tar.gz |
bitbake/siggen: Allow siggen code to control final stampfile format
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
-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 1a84796759..ffbab396c1 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
@@ -32,6 +32,9 @@ class SignatureGenerator(object): | |||
32 | def finalise(self, fn, d, varient): | 32 | def finalise(self, fn, d, varient): |
33 | return | 33 | return |
34 | 34 | ||
35 | def stampfile(self, stampbase, taskname, taskhash): | ||
36 | return "%s.%s" % (stampbase, taskname) | ||
37 | |||
35 | class SignatureGeneratorBasic(SignatureGenerator): | 38 | class SignatureGeneratorBasic(SignatureGenerator): |
36 | """ | 39 | """ |
37 | """ | 40 | """ |