mirror of
git://git.yoctoproject.org/poky
synced 2026-08-15 12:46:23 +00:00
cooker: don't add info for skipped recipes
(Bitbake rev: ac596d55de4ad86e1cdc84dabfea1350dd54efd0) Signed-off-by: Chris Larson <chris_larson@mentor.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
parent
60226ff35c
commit
a519031f23
@ -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:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user