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, 4 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 369444b9b3..e537634df8 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -516,6 +516,10 @@ class BBCooker:
516 if regex in unmatched: 516 if regex in unmatched:
517 collectlog.warn("No bb files matched BBFILE_PATTERN_%s '%s'" % (collection, pattern)) 517 collectlog.warn("No bb files matched BBFILE_PATTERN_%s '%s'" % (collection, pattern))
518 518
519 def findConfigFilePath(self, configfile):
520 path = self._findConfigFile(configfile)
521 bb.event.fire(bb.event.ConfigFilePathFound(path), self.configuration.data)
522
519 def findConfigFiles(self, varname): 523 def findConfigFiles(self, varname):
520 """ 524 """
521 Find config files which are appropriate values for varname. 525 Find config files which are appropriate values for varname.