From e7131a5983c4caff45c97e69b979002f0c1ff381 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Wed, 31 Mar 2010 23:32:35 -0700 Subject: [PATCH] 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. --- Makefile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.local b/Makefile.local index 2efef415..d9fd1d93 100644 --- a/Makefile.local +++ b/Makefile.local @@ -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) -- 2.43.0