summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2012-01-06 17:02:28 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-06 15:55:57 +0000
commiteb2a8fe6c0c80632b1aa6d2bd8575ad8c2851133 (patch)
tree6d0480ee4846b57df5449aa4bf4671401576ad97 /bitbake/lib/bb/event.py
parent4c30a7e9a3fefca2b38a9ce813e67329bdd6e825 (diff)
downloadpoky-eb2a8fe6c0c80632b1aa6d2bd8575ad8c2851133.tar.gz
cooker: remove command import in cooker.py
There is no direct use of command in cooker.py, and it is using bb.command instead. Remove command in the import list. This fixes a problem of embedded import between command.py and cooker.py. (Bitbake rev: c353316b2efcc7a893d6b4aa9a9647d51a6f69e3) Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r--bitbake/lib/bb/event.py8
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
405class 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
405class ConfigFilesFound(Event): 413class 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