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.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 9537239b03..d65b5ebb31 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -288,7 +288,9 @@ class BBCooker:
288 self.status = bb.cache.CacheData(self.caches_array) 288 self.status = bb.cache.CacheData(self.caches_array)
289 self.handleCollections( bb.data.getVar("BBFILE_COLLECTIONS", self.configuration.data, 1) ) 289 self.handleCollections( bb.data.getVar("BBFILE_COLLECTIONS", self.configuration.data, 1) )
290 290
291 fn = self.matchFile(buildfile) 291 fn, cls = bb.cache.Cache.virtualfn2realfn(buildfile)
292 fn = self.matchFile(fn)
293 fn = bb.cache.Cache.realfn2virtual(fn, cls)
292 elif len(pkgs_to_build) == 1: 294 elif len(pkgs_to_build) == 1:
293 self.updateCache() 295 self.updateCache()
294 296