summaryrefslogtreecommitdiffstats
path: root/bitbake/lib
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib')
-rw-r--r--bitbake/lib/bb/ui/toasterui.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/toasterui.py b/bitbake/lib/bb/ui/toasterui.py
index 453eaf9485..37d6b1a0cf 100644
--- a/bitbake/lib/bb/ui/toasterui.py
+++ b/bitbake/lib/bb/ui/toasterui.py
@@ -249,6 +249,10 @@ def main(server, eventHandler, params ):
249 buildinfohelper.store_license_manifest_path(event) 249 buildinfohelper.store_license_manifest_path(event)
250 continue 250 continue
251 251
252 if isinstance(event, bb.cooker.CookerExit):
253 # exit when the server exits
254 break
255
252 # ignore 256 # ignore
253 if isinstance(event, (bb.event.BuildBase, 257 if isinstance(event, (bb.event.BuildBase,
254 bb.event.StampUpdate, 258 bb.event.StampUpdate,
@@ -258,8 +262,7 @@ def main(server, eventHandler, params ):
258 bb.event.OperationProgress, 262 bb.event.OperationProgress,
259 bb.command.CommandFailed, 263 bb.command.CommandFailed,
260 bb.command.CommandExit, 264 bb.command.CommandExit,
261 bb.command.CommandCompleted, 265 bb.command.CommandCompleted)):
262 bb.cooker.CookerExit)):
263 continue 266 continue
264 267
265 if isinstance(event, bb.event.DepTreeGenerated): 268 if isinstance(event, bb.event.DepTreeGenerated):