]> git.notmuchmail.org Git - notmuch/commitdiff
Makefile: Fix to print CFLAGS with "make V=0"
authorCarl Worth <cworth@cworth.org>
Thu, 1 Apr 2010 06:32:35 +0000 (23:32 -0700)
committerCarl Worth <cworth@cworth.org>
Thu, 1 Apr 2010 06:32:35 +0000 (23:32 -0700)
The default "make" would be quite quiet, but still conveniently print
the CFLAGS. The explicit "make V=0" was intended to be identical, (only
not printing the message about V=1 but was broken in that it left the
CFLAGS off). Fix this.

Makefile.local

index 2efef4158efb5dd326f3bb59b751339c2fde0074..d9fd1d93a8b617f657cc9069984b0284356abc6a 100644 (file)
@@ -42,7 +42,7 @@ quiet = @printf $(quiet_DOC)$(eval quiet_DOC:=)"  $1 $2       $@\n"; $($1)
 endif
 # The user has explicitly enabled quiet compilation.
 ifeq ($(V),0)
-quiet = @printf "  $1  $@\n"; $($1)
+quiet = @printf "  $1 $2       $@\n"; $($1)
 endif
 # Otherwise, print the full command line.
 quiet ?= $($1)