diff options
| author | Chris Larson <chris_larson@mentor.com> | 2010-06-08 11:42:49 -0700 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:35 +0100 |
| commit | 1b6af2787e5842ef8e933c5ffda172664095832e (patch) | |
| tree | 41d17f02a7f5cf8377fe985fe239a60c41034685 | |
| parent | 4fac507dfb6aeb3b68dfa7f1945ff9132ad457d5 (diff) | |
| download | poky-1b6af2787e5842ef8e933c5ffda172664095832e.tar.gz | |
Make knotty ignore the NoProvider event
(Bitbake rev: e07f759dae96c0819c35bb67e1da18ca361bb584)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
| -rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index b6ca15b4fb..a7611a91a5 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
| @@ -149,21 +149,14 @@ def init(server, eventHandler): | |||
| 149 | break | 149 | break |
| 150 | 150 | ||
| 151 | # ignore | 151 | # ignore |
| 152 | if isinstance(event, bb.event.BuildStarted): | 152 | if isinstance(event, (bb.event.BuildBase, |
| 153 | continue | 153 | bb.event.NoProvider, |
| 154 | if isinstance(event, bb.event.BuildCompleted): | 154 | bb.event.MultipleProviders, |
| 155 | continue | 155 | bb.event.StampUpdate, |
| 156 | if isinstance(event, bb.event.MultipleProviders): | 156 | bb.event.ConfigParsed, |
| 157 | continue | 157 | bb.event.RecipeParsed, |
| 158 | if isinstance(event, bb.runqueue.runQueueEvent): | 158 | bb.runqueue.runQueueEvent, |
| 159 | continue | 159 | bb.runqueue.runQueueExitWait)): |
| 160 | if isinstance(event, bb.runqueue.runQueueExitWait): | ||
| 161 | continue | ||
| 162 | if isinstance(event, bb.event.StampUpdate): | ||
| 163 | continue | ||
| 164 | if isinstance(event, bb.event.ConfigParsed): | ||
| 165 | continue | ||
| 166 | if isinstance(event, bb.event.RecipeParsed): | ||
| 167 | continue | 160 | continue |
| 168 | print("Unknown Event: %s" % event) | 161 | print("Unknown Event: %s" % event) |
| 169 | 162 | ||
