From 483f85802a97cb9ad4d958c29458db91acc7809f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 3 Nov 2009 23:20:15 +0000 Subject: bitbake: Sync various functions with those from bitbake-dev and bitbake upstream Signed-off-by: Richard Purdie --- bitbake/lib/bb/event.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'bitbake/lib/bb/event.py') 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): class ConfigParsed(Event): """Configuration Parsing Complete""" +class RecipeParsed(Event): + """ Recipe Parsing Complete """ + + def __init__(self, fn, d): + self.fn = fn + Event.__init__(self, d) + class StampUpdate(Event): """Trigger for any adjustment of the stamp files to happen""" -- cgit v1.2.3-54-g00ecf