From: Simon Glass Date: Wed, 15 Oct 2014 12:37:25 +0000 (+0200) Subject: buildman: Don't default to -e when using -s X-Git-Tag: v2015.04-rc1~110^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=58d818f19f349fc17a3907b2be62a6d2d2dc242b;p=platform%2Fkernel%2Fu-boot.git 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 Reported-by: Albert Aribaud --- diff --git a/tools/buildman/control.py b/tools/buildman/control.py index 8b8c826..6a4de36 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.