summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cooker.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cooker.py')
-rw-r--r--bitbake/lib/bb/cooker.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 50526d52b2..effd02442c 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -2199,13 +2199,7 @@ class CookerParser(object):
2199 if info_array[0].skipped: 2199 if info_array[0].skipped:
2200 self.skipped += 1 2200 self.skipped += 1
2201 self.cooker.skiplist[virtualfn] = SkippedPackage(info_array[0]) 2201 self.cooker.skiplist[virtualfn] = SkippedPackage(info_array[0])
2202 (fn, cls, fnmc) = bb.cache.virtualfn2realfn(virtualfn) 2202 self.bb_caches[mc].add_info(virtualfn, info_array, self.cooker.recipecaches[mc],
2203
2204 if fnmc == mc:
2205 cache = self.cooker.recipecaches[mc]
2206 else:
2207 cache = None
2208 self.bb_caches[mc].add_info(virtualfn, info_array, cache,
2209 parsed=parsed, watcher = self.cooker.add_filewatch) 2203 parsed=parsed, watcher = self.cooker.add_filewatch)
2210 return True 2204 return True
2211 2205