sanitycheck: fix spammy build output
VERBOSE if set to any value enables verbose build output, setting to 0 does not have the intended effect. Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
This commit is contained in:
parent
85c1522699
commit
3efd2693b3
|
@ -913,7 +913,7 @@ class MakeGenerator:
|
|||
else:
|
||||
generator = "Unix Makefiles"
|
||||
generator_cmd = "$(MAKE)"
|
||||
verb = "VERBOSE=1" if VERBOSE else "VERBOSE=0"
|
||||
verb = "VERBOSE=1" if VERBOSE else ""
|
||||
|
||||
if phase == 'running':
|
||||
return MakeGenerator.MAKE_RULE_TMPL_RUN.format(
|
||||
|
|
Loading…
Reference in a new issue