summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/event.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/event.py')
-rw-r--r--bitbake/lib/bb/event.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/bitbake/lib/bb/event.py b/bitbake/lib/bb/event.py
index c0a59e6120..9d7341f878 100644
--- a/bitbake/lib/bb/event.py
+++ b/bitbake/lib/bb/event.py
@@ -127,6 +127,13 @@ def getName(e):
127class ConfigParsed(Event): 127class ConfigParsed(Event):
128 """Configuration Parsing Complete""" 128 """Configuration Parsing Complete"""
129 129
130class RecipeParsed(Event):
131 """ Recipe Parsing Complete """
132
133 def __init__(self, fn, d):
134 self.fn = fn
135 Event.__init__(self, d)
136
130class StampUpdate(Event): 137class StampUpdate(Event):
131 """Trigger for any adjustment of the stamp files to happen""" 138 """Trigger for any adjustment of the stamp files to happen"""
132 139