summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/runningbuild.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/runningbuild.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/runningbuild.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/runningbuild.py b/bitbake/lib/bb/ui/crumbs/runningbuild.py
index 0a48a6ba55..16a955d2b1 100644
--- a/bitbake/lib/bb/ui/crumbs/runningbuild.py
+++ b/bitbake/lib/bb/ui/crumbs/runningbuild.py
@@ -174,13 +174,13 @@ class RunningBuild (gobject.GObject):
color,
0))
- # if there are warnings, mark the task with warning
- # color;
+ # if there are warnings while processing a package
+ # (parent), mark the task with warning color;
# in case there are errors, the updates will be
# handled on TaskFailed.
- if color == HobColors.WARNING:
+ if color == HobColors.WARNING and parent:
self.model.set(parent, self.model.COL_COLOR, color)
- if task: #then we have a parent, and update it's color
+ if task: #then we have a parent (package), and update it's color
self.model.set(self.tasks_to_iter[(package, None)], self.model.COL_COLOR, color)
elif isinstance(event, bb.build.TaskStarted):