summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-04-02 17:08:57 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-04-03 15:53:44 +0100
commit39b637ccd35803a825bc4de6ee98228273ff5744 (patch)
tree3f4ee6efc633ca19291bf122a81e92c9441afed3 /bitbake/lib/bb
parent2c722e227f3ff482566aac6c10de26b4909d34d6 (diff)
downloadpoky-39b637ccd35803a825bc4de6ee98228273ff5744.tar.gz
bitbake: siggen: Drop misleading duplicate method
The real method is a few lines later, this one is incorrect and just causing confusion. Remove it. (Bitbake rev: a896f263300f069400eae533be0daf5dedf41c95) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r--bitbake/lib/bb/siggen.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index 43cf7b6e5a..114851c490 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -49,9 +49,6 @@ class SignatureGenerator(object):
49 """Write/update the file checksum cache onto disk""" 49 """Write/update the file checksum cache onto disk"""
50 return 50 return
51 51
52 def set_taskdata(self, hashes, deps, checksum):
53 return
54
55 def stampfile(self, stampbase, file_name, taskname, extrainfo): 52 def stampfile(self, stampbase, file_name, taskname, extrainfo):
56 return ("%s.%s.%s" % (stampbase, taskname, extrainfo)).rstrip('.') 53 return ("%s.%s.%s" % (stampbase, taskname, extrainfo)).rstrip('.')
57 54