From c7f971e8c02524ee2435406f0c14791b75c10e20 Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Fri, 4 Dec 2009 15:08:37 -0800 Subject: Fix quiet compilation to print the user's CFLAGS, CXXFLAGS, LDFLAGS. The only reason I ever call "make V=1" myself, (other than when debugging the compiler command-line for some reason), is to ensure whether my CFLAGS, (like "-g -O0" or "-O2"), are actually making it to the command-line. But these are hard to find in the V=1 output, and really, we should just print these even in the quiet case. So do that. --- Makefile.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.local') diff --git a/Makefile.local b/Makefile.local index 4b29ad83..af1c9b5c 100644 --- a/Makefile.local +++ b/Makefile.local @@ -22,7 +22,7 @@ notmuch_client_srcs = \ notmuch_client_modules = $(notmuch_client_srcs:.c=.o) notmuch: $(notmuch_client_modules) lib/notmuch.a - $(call quiet,CXX) $^ $(LDFLAGS) -o $@ + $(call quiet,CXX,$(LDFLAGS)) $^ $(FINAL_LDFLAGS) -o $@ notmuch.1.gz: notmuch.1 $(call quiet,gzip) --stdout $^ > $@ -- cgit v1.2.3