summaryrefslogtreecommitdiffstats
path: root/tools/buildman
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2014-10-15 14:37:25 +0200
committerSimon Glass <sjg@chromium.org>2014-11-03 14:10:53 -0700
commit58d818f19f349fc17a3907b2be62a6d2d2dc242b (patch)
tree986c48168953ec2c0e6149b24619bf820df7ae6c /tools/buildman
parentbe338a5149da998cc8366de69d788d04a64688e1 (diff)
downloadtalos-obmc-uboot-58d818f19f349fc17a3907b2be62a6d2d2dc242b.tar.gz
talos-obmc-uboot-58d818f19f349fc17a3907b2be62a6d2d2dc242b.zip
buildman: Don't default to -e when using -s
When using summary mode (-s) we don't always want to display errors. Allow this option to be omitted. Series-to: u-boot Series-cc: albert Change-Id: I6b37754d55eb920ecae114fceba55834b43ea3b9 Signed-off-by: Simon Glass <sjg@chromium.org> Reported-by: Albert Aribaud <albert.u.boot@aribaud.net>
Diffstat (limited to 'tools/buildman')
-rw-r--r--tools/buildman/control.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/buildman/control.py b/tools/buildman/control.py
index 8b8c826002..6a4de36681 100644
--- a/tools/buildman/control.py
+++ b/tools/buildman/control.py
@@ -188,7 +188,8 @@ def DoBuildman(options, args, toolchains=None, make_func=None, boards=None,
else:
series = None
options.verbose = True
- options.show_errors = True
+ if not options.summary:
+ options.show_errors = True
# By default we have one thread per CPU. But if there are not enough jobs
# we can have fewer threads and use a high '-j' value for make.
OpenPOWER on IntegriCloud