summaryrefslogtreecommitdiff
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
parent63dcec95b77c8cab719f2e603cb89bf48b6d80b6 (diff)
downloadopenembedded-core-834f0c5a8de2558ac830f4b280a0d4043206f26d.tar.gz
openembedded-core-834f0c5a8de2558ac830f4b280a0d4043206f26d.tar.bz2
openembedded-core-834f0c5a8de2558ac830f4b280a0d4043206f26d.tar.xz
openembedded-core-834f0c5a8de2558ac830f4b280a0d4043206f26d.zip
siggen.py: print taskname when seeing mismatched hash in cache
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
-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 51983ca19..48f600a21 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -166,7 +166,7 @@ class SignatureGeneratorBasic(SignatureGenerator):
if k not in self.taskhash:
continue
if dataCache.basetaskhash[k] != self.basehash[k]:
- bb.error("Bitbake's cached basehash does not match the one we just generated!")
+ bb.error("Bitbake's cached basehash does not match the one we just generated (%s)!" % k)
bb.error("The mismatched hashes were %s and %s" % (dataCache.basetaskhash[k], self.basehash[k]))
self.dump_sigtask(fn, task, dataCache.stamp[fn], True)