| Submitter | Richard Purdie |
|---|---|
| Date | Aug. 15, 2012, 3:59 p.m. |
| Message ID | <1345046397.14667.9.camel@ted> |
| Download | mbox | patch |
| Permalink | /patch/34641/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/bitbake/lib/bb/ui/uihelper.py b/bitbake/lib/bb/ui/uihelper.py index 2c78695..e408b04 100644 --- a/bitbake/lib/bb/ui/uihelper.py +++ b/bitbake/lib/bb/ui/uihelper.py @@ -48,7 +48,7 @@ class BBUIHelper: self.running_pids.remove(event.pid) self.failed_tasks.append( { 'title' : "%s %s" % (event._package, event._task)}) self.needUpdate = True - if isinstance(event, bb.runqueue.runQueueTaskStarted): + if isinstance(event, bb.runqueue.runQueueTaskStarted) or isinstance(event, bb.runqueue.sceneQueueTaskStarted): self.tasknumber_current = event.stats.completed + event.stats.active + event.stats.failed + 1 self.tasknumber_total = event.stats.total
This avoids task (0 of 0) type messages being displayed during setscene by knotty2. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> ---