diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-11-22 14:13:52 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2011-01-04 14:46:44 +0000 |
commit | a519031f2312c02d113635d52cf2e785c9b6f002 (patch) | |
tree | 4e1a02ed5d4dbd831b1edcd13a8bea13a6704f2b /bitbake/lib | |
parent | 60226ff35c08c6590fe197e4c5d41d43dc4c3d3b (diff) | |
download | poky-a519031f2312c02d113635d52cf2e785c9b6f002.tar.gz |
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>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/cooker.py | 5 |
1 files changed, 3 insertions, 2 deletions
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): | |||
1084 | self.virtuals += len(infos) | 1084 | self.virtuals += len(infos) |
1085 | 1085 | ||
1086 | for virtualfn, info in infos: | 1086 | for virtualfn, info in infos: |
1087 | self.bb_cache.add_info(virtualfn, info, self.cooker.status, | ||
1088 | parsed=parsed) | ||
1089 | if info.skipped: | 1087 | if info.skipped: |
1090 | self.skipped += 1 | 1088 | self.skipped += 1 |
1089 | else: | ||
1090 | self.bb_cache.add_info(virtualfn, info, self.cooker.status, | ||
1091 | parsed=parsed) | ||
1091 | finally: | 1092 | finally: |
1092 | # only fire events on percentage boundaries | 1093 | # only fire events on percentage boundaries |
1093 | if self.current % self.progress_chunk == 0: | 1094 | if self.current % self.progress_chunk == 0: |