Skip to content
Snippets Groups Projects
Commit f5e5ece0 authored by Tom Rini's avatar Tom Rini Committed by Simon Glass
Browse files

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: default avatarTom Rini <trini@konsulko.com>
Acked-by: default avatarSimon Glass <sjg@chromium.org>
parent 0eb4c045
No related branches found
No related tags found
No related merge requests found
...@@ -203,7 +203,9 @@ class BuilderThread(threading.Thread): ...@@ -203,7 +203,9 @@ class BuilderThread(threading.Thread):
src_dir = os.getcwd() src_dir = os.getcwd()
else: else:
args.append('O=build') args.append('O=build')
if not self.builder.verbose_build: if self.builder.verbose_build:
args.append('V=1')
else:
args.append('-s') args.append('-s')
if self.builder.num_jobs is not None: if self.builder.num_jobs is not None:
args.extend(['-j', str(self.builder.num_jobs)]) args.extend(['-j', str(self.builder.num_jobs)])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment