From: Chris Larson Date: Mon, 22 Nov 2010 21:13:52 +0000 (-0700) Subject: cooker: don't add info for skipped recipes X-Git-Tag: 2011-1~3109 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a519031f2312c02d113635d52cf2e785c9b6f002;p=openembedded-core.git cooker: don't add info for skipped recipes (Bitbake rev: ac596d55de4ad86e1cdc84dabfea1350dd54efd0) Signed-off-by: Chris Larson Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index e40ec3dceb..4b52108eaf 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -1084,10 +1084,11 @@ class CookerParser(object): self.virtuals += len(infos) for virtualfn, info in infos: - self.bb_cache.add_info(virtualfn, info, self.cooker.status, - parsed=parsed) if info.skipped: self.skipped += 1 + else: + self.bb_cache.add_info(virtualfn, info, self.cooker.status, + parsed=parsed) finally: # only fire events on percentage boundaries if self.current % self.progress_chunk == 0: