summaryrefslogtreecommitdiff
path: root/tools/buildman/builder.py
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-02-06 08:06:11 +0300
committerSimon Glass <sjg@chromium.org>2015-03-06 02:14:32 +0300
commit63c619eefde619731370b42ae2a2c16a86b23597 (patch)
treed16177703dd3e2b469c520c49b64e22b8861301b /tools/buildman/builder.py
parent2a76a64981faf1cee84b6b7bdfa1894ba2e2e954 (diff)
downloadu-boot-63c619eefde619731370b42ae2a2c16a86b23597.tar.xz
buildman: Add a space before the list of boards
Tweak the output slightly so we don't get things like: - board1 board2+ board3 board4 There should be a space before the '+'. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/builder.py')
-rw-r--r--tools/buildman/builder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py
index 1b0ad99275..54f3292208 100644
--- a/tools/buildman/builder.py
+++ b/tools/buildman/builder.py
@@ -664,7 +664,7 @@ class Builder:
arch = 'unknown'
str = self.col.Color(color, ' ' + target)
if not arch in done_arch:
- str = self.col.Color(color, char) + ' ' + str
+ str = ' %s %s' % (self.col.Color(color, char), str)
done_arch[arch] = True
if not arch in arch_list:
arch_list[arch] = str