diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-09 17:56:18 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-10 11:10:00 -0700 |
commit | 75b9f93638994e15a7a78285b6898d4f33cf6db7 (patch) | |
tree | 93411310d94d826d77c3e57348349ba119b762cc /bitbake/lib/bb | |
parent | aadfea6be629a17e4e26747aba4f59f5ac8e7558 (diff) | |
download | poky-75b9f93638994e15a7a78285b6898d4f33cf6db7.tar.gz |
bitbake: knotty: Add missing continue statement for runQueueExitWait event
The continue statement was missing for this event and the event was then
listed in the "known safe to ignore list". Clean this up.
(Bitbake rev: c4ee342300bf905e6e3bef581c61b86289461536)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb')
-rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 3dada8eac6..14bdb378d5 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
@@ -320,7 +320,7 @@ def main(server, eventHandler, params, tf = TerminalFilter): | |||
320 | if isinstance(event, bb.runqueue.runQueueExitWait): | 320 | if isinstance(event, bb.runqueue.runQueueExitWait): |
321 | if not main.shutdown: | 321 | if not main.shutdown: |
322 | main.shutdown = 1 | 322 | main.shutdown = 1 |
323 | 323 | continue | |
324 | if isinstance(event, bb.event.LogExecTTY): | 324 | if isinstance(event, bb.event.LogExecTTY): |
325 | if log_exec_tty: | 325 | if log_exec_tty: |
326 | tries = event.retries | 326 | tries = event.retries |
@@ -485,7 +485,6 @@ def main(server, eventHandler, params, tf = TerminalFilter): | |||
485 | bb.event.RecipeParsed, | 485 | bb.event.RecipeParsed, |
486 | bb.event.RecipePreFinalise, | 486 | bb.event.RecipePreFinalise, |
487 | bb.runqueue.runQueueEvent, | 487 | bb.runqueue.runQueueEvent, |
488 | bb.runqueue.runQueueExitWait, | ||
489 | bb.event.OperationStarted, | 488 | bb.event.OperationStarted, |
490 | bb.event.OperationCompleted, | 489 | bb.event.OperationCompleted, |
491 | bb.event.OperationProgress, | 490 | bb.event.OperationProgress, |