summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorDmitry Eremin-Solenikov <dbaryshkov@gmail.com>2011-08-21 11:57:40 +0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-05 20:25:43 +0100
commita6994f8413fc8fb4ec1dc060eb1145d362a78701 (patch)
tree33ae37459b4b538e72e7b6b98017ae75a4385b6c /bitbake
parenta9325ecad889556b0043244509ed767eea363e1e (diff)
downloadast2050-yocto-poky-a6994f8413fc8fb4ec1dc060eb1145d362a78701.zip
ast2050-yocto-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')
-rw-r--r--bitbake/lib/bb/siggen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index a9c84c4..1225791 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -39,7 +39,7 @@ class SignatureGenerator(object):
return
def get_taskhash(self, fn, task, deps, dataCache):
- return 0
+ return "0"
def set_taskdata(self, hashes, deps):
return
OpenPOWER on IntegriCloud