Kaydet (Commit) 1b5ed901 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Simplify check for verbosity

Just check for $(VERBOSE) or $(verbose) being non-empty instead of
checking for $(VERBOSE) equalling "TRUE". Isn't our normal way to do a
verbose make to pass verbose=t?

Change-Id: Ic4ddc1fe025fed55ca56fd21b615640c389c0454
üst 5fbc94bc
...@@ -88,8 +88,7 @@ $(foreach pkgformat,$(5),\ ...@@ -88,8 +88,7 @@ $(foreach pkgformat,$(5),\
) \ ) \
$(4) \ $(4) \
-format $(pkgformat) \ -format $(pkgformat) \
$(if $(filter TRUE,$(VERBOSE)),-verbose, \ $(if $(VERBOSE)$(verbose),-verbose,-quiet) \
$(if $(findstring s,$(MAKEFLAGS)),-quiet)) \
) )
endef endef
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment