diff options
-rw-r--r-- | Makefile.help | 4 | ||||
-rw-r--r-- | Makerules | 2 | ||||
-rw-r--r-- | extra/locale/Makefile.in | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.help b/Makefile.help index abc6471b5..f6c762794 100644 --- a/Makefile.help +++ b/Makefile.help @@ -53,8 +53,8 @@ help: @echo 'Environment variables:' @echo ' O=<abspath> - Use <abspath> as object directory' @echo ' V="" - Quiet build (default)' - @echo ' V=1 - Brief build (show defines, ld flags)' - @echo ' V=2 - Very verbose build' + @echo ' V=1 - Very verbose build (show full commands)' + @echo ' V=2 - Brief build (show defines, ld flags)' @echo ' CROSS_COMPILE= - Override CROSS_COMPILER_PREFIX from .config' @echo ' ARCH= - Use given arch for config targets' @echo ' SHELL= - Shell to use for make' @@ -94,7 +94,7 @@ else export MAKE_IS_SILENT := n SECHO := @echo ifneq ($(V)$(VERBOSE),) -ifeq ($(V),1) +ifeq ($(V),2) DISP := bri# brief, like pur but with defines Q := @ else 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 |