commit 4cc6973d5defdbb45f89b1bf694277ee49a75c2a
parent 60c10055eab602e0f29fa0a4446b0f22d8c79696
Author: falkTX <falktx@falktx.com>
Date: Mon, 7 Mar 2022 14:08:22 +0000
Accept a few other verbose make flags
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Makefile.base.mk b/Makefile.base.mk
@@ -489,8 +489,12 @@ endif
# ---------------------------------------------------------------------------------------------------------------------
# Handle the verbosity switch
-ifeq ($(VERBOSE),true)
SILENT =
+
+ifeq ($(VERBOSE),1)
+else ifeq ($(VERBOSE),y)
+else ifeq ($(VERBOSE),yes)
+else ifeq ($(VERBOSE),true)
else
SILENT = @
endif