From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [143.182.124.21]) by mx1.pokylinux.org (Postfix) with ESMTP id 7D3264C81110 for ; Thu, 16 Dec 2010 03:24:08 -0600 (CST) Received: from azsmga001.ch.intel.com ([10.2.17.19]) by azsmga101.ch.intel.com with ESMTP; 16 Dec 2010 01:24:07 -0800 Message-Id: <849307$apmeoj@azsmga001.ch.intel.com> X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.59,354,1288594800"; d="scan'208";a="362494739" Received: from poky-desktop-ktian1.sh.intel.com (HELO localhost) ([10.239.36.126]) by azsmga001.ch.intel.com with ESMTP; 16 Dec 2010 01:24:06 -0800 From: Kevin Tian Date: Thu, 16 Dec 2010 17:00:07 +0800 To: poky@pokylinux.org,paul.eggleton@linux.intel.com,rpurdie@linux.intel.com Subject: [PATCH 3/3] siggen.py: print taskname when seeing mismatched hash in cache X-BeenThere: poky@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Poky build system developer discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 16 Dec 2010 09:24:08 -0000 Signed-off-by: Kevin Tian --- 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 3eecd75..f7c93ae 100644 --- a/bitbake/lib/bb/siggen.py +++ b/bitbake/lib/bb/siggen.py @@ -169,7 +169,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) -- 1.6.0.4