diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2015-04-29 10:22:18 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-06-10 10:17:53 -0500 |
commit | 98d8242d872774356d8efb93857036f3a26578d7 (patch) | |
tree | 9976d05aa00c04438bef3b4ecf0e1568eb3336c8 /extra/locale/Makefile.in | |
parent | 3328a7c918aaf460ae0e20d0b6545b721f77efb1 (diff) |
buildsys: swap V=1 with V=2 command printing
Previously V=1 did print abbreviated commands and V=2 the full commands.
Kbuild-based build-systems behave in the opposite way and this is
apparently confusing or inconvenient for users so swap our V handling to
be in line with kbuild (and automake as far as V=0 / V=1 is concerned).
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'extra/locale/Makefile.in')
-rw-r--r-- | extra/locale/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/locale/Makefile.in b/extra/locale/Makefile.in index 1a2305bb7..7ec9f5350 100644 --- a/extra/locale/Makefile.in +++ b/extra/locale/Makefile.in @@ -155,10 +155,10 @@ $(locale_OUT)/gen_wctype : $(locale_DIR)/gen_wctype.c ifneq ($(V),) ifeq ($(V),1) -FLAG-locale-verbose := -v +FLAG-locale-verbose := -v -v endif ifeq ($(V),2) -FLAG-locale-verbose := -v -v +FLAG-locale-verbose := -v endif endif |