diff options
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r-- | bitbake/lib/bb/event.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py index 088cd7c097..8d7f9413e0 100644 --- a/bitbake/lib/bb/event.py +++ b/bitbake/lib/bb/event.py | |||
@@ -402,6 +402,14 @@ class FilesMatchingFound(Event): | |||
402 | self._pattern = pattern | 402 | self._pattern = pattern |
403 | self._matches = matches | 403 | self._matches = matches |
404 | 404 | ||
405 | class CoreBaseFilesFound(Event): | ||
406 | """ | ||
407 | Event when a list of appropriate config files has been generated | ||
408 | """ | ||
409 | def __init__(self, paths): | ||
410 | Event.__init__(self) | ||
411 | self._paths = paths | ||
412 | |||
405 | class ConfigFilesFound(Event): | 413 | class ConfigFilesFound(Event): |
406 | """ | 414 | """ |
407 | Event when a list of appropriate config files has been generated | 415 | Event when a list of appropriate config files has been generated |