diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-09 17:30:17 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-09 22:42:20 +0100 |
commit | a981df3cc9bf410d24f39919959952bdc6c76d03 (patch) | |
tree | 7377a17bf8049710b6335eef4be622c402238bdd /lib/bb/ui | |
parent | f22ac9149cc9ab96510bb377deb82cd9bceb95c1 (diff) | |
download | bitbake-a981df3cc9bf410d24f39919959952bdc6c76d03.tar.gz |
bitbake/event/ast: Add RecipePreFinalise event
One of the implications is we need to register the event handlers before
executing the anonymous python functions. I can't find any issue with making
that change in any existing metadata use cases.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/ui')
-rw-r--r-- | lib/bb/ui/knotty.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/bb/ui/knotty.py b/lib/bb/ui/knotty.py index f330c084..997eb3fe 100644 --- a/lib/bb/ui/knotty.py +++ b/lib/bb/ui/knotty.py @@ -228,6 +228,7 @@ def main(server, eventHandler): bb.event.StampUpdate, bb.event.ConfigParsed, bb.event.RecipeParsed, + bb.event.RecipePreFinalise, bb.runqueue.runQueueEvent, bb.runqueue.runQueueExitWait)): continue |