From: Kevin Tian Date: Thu, 16 Dec 2010 09:00:07 +0000 (+0800) Subject: siggen.py: print taskname when seeing mismatched hash in cache X-Git-Tag: 2011-1~3388 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=834f0c5a8de2558ac830f4b280a0d4043206f26d;p=openembedded-core.git siggen.py: print taskname when seeing mismatched hash in cache Signed-off-by: Kevin Tian --- 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): 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)