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 5bbabfceb9..d1198d4496 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -295,7 +295,9 @@ class BBCooker:
295 self.status = bb.cache.CacheData(self.caches_array) 295 self.status = bb.cache.CacheData(self.caches_array)
296 self.handleCollections( self.configuration.data.getVar("BBFILE_COLLECTIONS", 1) ) 296 self.handleCollections( self.configuration.data.getVar("BBFILE_COLLECTIONS", 1) )
297 297
298 fn = self.matchFile(buildfile) 298 fn, cls = bb.cache.Cache.virtualfn2realfn(buildfile)
299 fn = self.matchFile(fn)
300 fn = bb.cache.Cache.realfn2virtual(fn, cls)
299 elif len(pkgs_to_build) == 1: 301 elif len(pkgs_to_build) == 1:
300 self.updateCache() 302 self.updateCache()
301 303