From 3efd2693b3a4ebea003353e2091e52fbdf7edaa8 Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Tue, 26 Jun 2018 10:41:35 -0700 Subject: [PATCH] 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 --- scripts/sanitycheck | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/sanitycheck b/scripts/sanitycheck index e9fae0f490b..ce0079cc174 100755 --- a/scripts/sanitycheck +++ b/scripts/sanitycheck @@ -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(