diff options
author | Tom Rini <trini@konsulko.com> | 2015-04-01 07:47:41 -0400 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 16:24:25 -0600 |
commit | f5e5ece0b72ef54cfe4ebdb06e2258a7b3d0228e (patch) | |
tree | 5acca89b4b95341f7e5f7ef490994033cc8cf5a2 /tools/buildman | |
parent | 0eb4c045038e5fdbbab342b226c79445faf5116c (diff) |
buildman: Make -V (verbose_build) really be verbose
The help text for -V says we will pass V=1 but all it really did was not
pass in -s. Change the logic to pass make V=1 with given to buildman -V or
-s to make otherwise.
Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman')
-rw-r--r-- | tools/buildman/builderthread.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py index b4cfdeee08c..ce1cfddf8cf 100644 --- a/tools/buildman/builderthread.py +++ b/tools/buildman/builderthread.py @@ -203,7 +203,9 @@ class BuilderThread(threading.Thread): src_dir = os.getcwd() else: args.append('O=build') - if not self.builder.verbose_build: + if self.builder.verbose_build: + args.append('V=1') + else: args.append('-s') if self.builder.num_jobs is not None: args.extend(['-j', str(self.builder.num_jobs)]) |