diff options
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-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: |