diff options
| author | Kevin Tian <kevin.tian@intel.com> | 2010-12-16 17:00:07 +0800 | 
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-12-20 14:50:22 +0000 | 
| commit | 834f0c5a8de2558ac830f4b280a0d4043206f26d (patch) | |
| tree | 7465e7f280dc43b278fced099d36df1970f458c2 | |
| parent | 63dcec95b77c8cab719f2e603cb89bf48b6d80b6 (diff) | |
| download | openembedded-core-834f0c5a8de2558ac830f4b280a0d4043206f26d.tar.gz openembedded-core-834f0c5a8de2558ac830f4b280a0d4043206f26d.tar.bz2 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.py | 2 | 
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):                  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) | 
