diff options
author | Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> | 2011-08-21 11:57:40 +0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-05 20:25:43 +0100 |
commit | a6994f8413fc8fb4ec1dc060eb1145d362a78701 (patch) | |
tree | 33ae37459b4b538e72e7b6b98017ae75a4385b6c /bitbake/lib | |
parent | a9325ecad889556b0043244509ed767eea363e1e (diff) | |
download | poky-a6994f8413fc8fb4ec1dc060eb1145d362a78701.tar.gz |
lib/bb/siggen.py: return a string from noop get_taskhash
OpenEmbedded is expecting to get a string from get_taskhash, but noop siggen
returns just 0 (number), so OE classes/sstate.bbclass barfs badly. Fix that.
(Bitbake rev: 24272dae15ccf641ece11ef5a6e2bfa3ebb6f5f9)
Signed-off-by: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-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 a9c84c474f..12257914cd 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py | |||
@@ -39,7 +39,7 @@ class SignatureGenerator(object): | |||
39 | return | 39 | return |
40 | 40 | ||
41 | def get_taskhash(self, fn, task, deps, dataCache): | 41 | def get_taskhash(self, fn, task, deps, dataCache): |
42 | return 0 | 42 | return "0" |
43 | 43 | ||
44 | def set_taskdata(self, hashes, deps): | 44 | def set_taskdata(self, hashes, deps): |
45 | return | 45 | return |