mirror of
https://xff.cz/git/u-boot/
synced 2025-09-03 09:42:22 +02:00
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>
This commit is contained in:
@@ -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)])
|
||||
|
Reference in New Issue
Block a user