Browse Source

Merge remote-tracking branch 'origin/develop' into xap

QMK Bot 1 month ago
parent
commit
75a84318f9
4 changed files with 3 additions and 6 deletions
  1. 1 1
      Makefile
  2. 1 1
      builddefs/build_keyboard.mk
  3. 1 1
      builddefs/build_test.mk
  4. 0 3
      lib/python/qmk/build_targets.py

+ 1 - 1
Makefile

@@ -1,4 +1,4 @@
-ifndef VERBOSE
+ifneq ($(VERBOSE),true)
 .SILENT:
 endif
 

+ 1 - 1
builddefs/build_keyboard.mk

@@ -4,7 +4,7 @@
 # responsible for determining which folder is being used and doing the
 # corresponding environment setup.
 
-ifndef VERBOSE
+ifneq ($(VERBOSE),true)
 .SILENT:
 endif
 

+ 1 - 1
builddefs/build_test.mk

@@ -1,4 +1,4 @@
-ifndef VERBOSE
+ifneq ($(VERBOSE),true)
 .SILENT:
 endif
 

+ 0 - 3
lib/python/qmk/build_targets.py

@@ -113,9 +113,6 @@ class BuildTarget:
             'builddefs/build_keyboard.mk',
         ]
 
-        if not cli.config.general.verbose:
-            compile_args.append('-s')
-
         verbose = 'true' if cli.config.general.verbose else 'false'
         color = 'true' if cli.config.general.color else 'false'