mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
Makefile: Fix to print CFLAGS with "make V=0"
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.
This commit is contained in:
parent
8c671a17c0
commit
e7131a5983
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ quiet = @printf $(quiet_DOC)$(eval quiet_DOC:=)" $1 $2 $@\n"; $($1)
|
||||||
endif
|
endif
|
||||||
# The user has explicitly enabled quiet compilation.
|
# The user has explicitly enabled quiet compilation.
|
||||||
ifeq ($(V),0)
|
ifeq ($(V),0)
|
||||||
quiet = @printf " $1 $@\n"; $($1)
|
quiet = @printf " $1 $2 $@\n"; $($1)
|
||||||
endif
|
endif
|
||||||
# Otherwise, print the full command line.
|
# Otherwise, print the full command line.
|
||||||
quiet ?= $($1)
|
quiet ?= $($1)
|
||||||
|
|
Loading…
Reference in a new issue