summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/build.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2016-12-20 21:15:31 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-12-22 12:36:40 +0000
commitd156f2ce333c7bdd9573daab9f27c2bd10888c74 (patch)
tree4ca53caf22ee6c90a15b62ce38f0ce1f73afc08a /bitbake/lib/bb/build.py
parent5d620b7f90a6d43967b271bc165d23239b25d61c (diff)
downloadpoky-d156f2ce333c7bdd9573daab9f27c2bd10888c74.tar.gz
bitbake: build/uihelper: Show better information about multiconfig tasks on UI
Currently the UI shows X is building, possibly multiple times but doesn't say which of the multilibs that might be. This adds a prefix to the task name so the mulitconfig being built can be identified. (Bitbake rev: d93ddd185dde53f50aea06ada094bb0d9b5ba4f0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/build.py')
-rw-r--r--bitbake/lib/bb/build.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py
index 0c2c1ba126..271cda62c9 100644
--- a/bitbake/lib/bb/build.py
+++ b/bitbake/lib/bb/build.py
@@ -92,6 +92,7 @@ class TaskBase(event.Event):
92 def __init__(self, t, logfile, d): 92 def __init__(self, t, logfile, d):
93 self._task = t 93 self._task = t
94 self._package = d.getVar("PF") 94 self._package = d.getVar("PF")
95 self._mc = d.getVar("BB_CURRENT_MC")
95 self.taskfile = d.getVar("FILE") 96 self.taskfile = d.getVar("FILE")
96 self.taskname = self._task 97 self.taskname = self._task
97 self.logfile = logfile 98 self.logfile = logfile