summaryrefslogtreecommitdiffstats
path: root/lib/bb/event.py
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2010-06-08 13:20:35 -0700
committerChris Larson <chris_larson@mentor.com>2010-06-08 13:37:06 -0700
commit36b980c16bf74b3c2066cc120f9f27e11f189a63 (patch)
tree15d25cfac98a172507a8225797d950edacd404cd /lib/bb/event.py
parent49b8bab706c59e93287f8540187b62ba3ece0a11 (diff)
downloadbitbake-36b980c16bf74b3c2066cc120f9f27e11f189a63.tar.gz
Move the output of no provider and multiple provider messages into the UI
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'lib/bb/event.py')
-rw-r--r--lib/bb/event.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bb/event.py b/lib/bb/event.py
index c0a8db15a..7731649ef 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -235,10 +235,11 @@ class BuildCompleted(BuildBase):
class NoProvider(Event):
"""No Provider for an Event"""
- def __init__(self, item, runtime=False):
+ def __init__(self, item, runtime=False, dependees=None):
Event.__init__(self)
self._item = item
self._runtime = runtime
+ self._dependees = dependees
def getItem(self):
return self._item