summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/siggen.py
diff options
context:
space:
mode:
authorKevin Tian <kevin.tian@intel.com>2010-12-16 17:00:07 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-12-20 14:50:22 +0000
commit834f0c5a8de2558ac830f4b280a0d4043206f26d (patch)
tree7465e7f280dc43b278fced099d36df1970f458c2 /bitbake/lib/bb/siggen.py
parent63dcec95b77c8cab719f2e603cb89bf48b6d80b6 (diff)
downloadpoky-834f0c5a8de2558ac830f4b280a0d4043206f26d.tar.gz
siggen.py: print taskname when seeing mismatched hash in cache
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Diffstat (limited to 'bitbake/lib/bb/siggen.py')
-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 51983ca19a..48f600a212 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -166,7 +166,7 @@ class SignatureGeneratorBasic(SignatureGenerator):
166 if k not in self.taskhash: 166 if k not in self.taskhash:
167 continue 167 continue
168 if dataCache.basetaskhash[k] != self.basehash[k]: 168 if dataCache.basetaskhash[k] != self.basehash[k]:
169 bb.error("Bitbake's cached basehash does not match the one we just generated!") 169 bb.error("Bitbake's cached basehash does not match the one we just generated (%s)!" % k)
170 bb.error("The mismatched hashes were %s and %s" % (dataCache.basetaskhash[k], self.basehash[k])) 170 bb.error("The mismatched hashes were %s and %s" % (dataCache.basetaskhash[k], self.basehash[k]))
171 self.dump_sigtask(fn, task, dataCache.stamp[fn], True) 171 self.dump_sigtask(fn, task, dataCache.stamp[fn], True)
172 172