summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r--bitbake/lib/bb/cache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 10910a6809..5ea41c5de0 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -514,11 +514,11 @@ class Cache(object):
514 514
515 return len(self.depends_cache) 515 return len(self.depends_cache)
516 516
517 def parse(self, filename, appends): 517 def parse(self, filename, appends, layername):
518 """Parse the specified filename, returning the recipe information""" 518 """Parse the specified filename, returning the recipe information"""
519 self.logger.debug("Parsing %s", filename) 519 self.logger.debug("Parsing %s", filename)
520 infos = [] 520 infos = []
521 datastores = self.databuilder.parseRecipeVariants(filename, appends, mc=self.mc) 521 datastores = self.databuilder.parseRecipeVariants(filename, appends, mc=self.mc, layername=layername)
522 depends = [] 522 depends = []
523 variants = [] 523 variants = []
524 # Process the "real" fn last so we can store variants list 524 # Process the "real" fn last so we can store variants list