diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-08-08 20:51:18 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-08-08 23:36:29 +0300 |
commit | 1b5ed901af4aefad8397f259c85a6a94871df2e1 (patch) | |
tree | 935da0c638568f0ab2cf06d9ea58c02268018d48 /instsetoo_native | |
parent | 5fbc94bc00d04c3af9e519699f91c0fff32df0c3 (diff) |
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
Diffstat (limited to 'instsetoo_native')
-rw-r--r-- | instsetoo_native/CustomTarget_install.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/instsetoo_native/CustomTarget_install.mk b/instsetoo_native/CustomTarget_install.mk index ffedb20c49f7..5045b5ae9717 100644 --- a/instsetoo_native/CustomTarget_install.mk +++ b/instsetoo_native/CustomTarget_install.mk @@ -88,8 +88,7 @@ $(foreach pkgformat,$(5),\ ) \ $(4) \ -format $(pkgformat) \ - $(if $(filter TRUE,$(VERBOSE)),-verbose, \ - $(if $(findstring s,$(MAKEFLAGS)),-quiet)) \ + $(if $(VERBOSE)$(verbose),-verbose,-quiet) \ ) endef |