On Fri, Mar 18, 2011 at 10:57:36AM -0400, Lennart Sorensen wrote:
> Perhaps V=0 could show quiet + defines, V=1 could show commands.
> That would give the new feature and be backwards compatible.
> 
> Certainly completely changing an existing behaviour doesn't seem very
> nice.

So for example:

diff --git a/Makefile.help b/Makefile.help
index 1c2c96e..eef8937 100644
--- a/Makefile.help
+++ b/Makefile.help
@@ -46,7 +46,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=0                    - Brief build (show defines, ld flags)'
+       @echo '  V=1                    - Verbose build'
        @echo '  V=2                    - Very verbose build'
        @echo '  CROSS=         - Override CROSS_COMPILER_PREFIX from .config'
        @echo '  ARCH=          - Use given arch for config targets'
diff --git a/Makerules b/Makerules
index f045e52..e77e5a6 100644
--- a/Makerules
+++ b/Makerules
@@ -67,7 +67,7 @@ else
 export MAKE_IS_SILENT := n
 SECHO := @echo
 ifneq ($(V)$(VERBOSE),)
-ifeq ($(V),1)
+ifeq ($(V),0)
 DISP := bri# brief, like pur but with defines
 Q := @
 else


Not that I can see how V=1 and V=2 were different before.

-- 
Len Sorensen
_______________________________________________
uClibc mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/uclibc

Reply via email to