Browse Source

Accept a few other verbose make flags

Signed-off-by: falkTX <falktx@falktx.com>
pull/375/head
falkTX 3 years ago
parent
commit
4cc6973d5d
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      Makefile.base.mk

+ 5
- 1
Makefile.base.mk View File

@@ -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


Loading…
Cancel
Save