aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.local
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-12-04 15:08:37 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-12-04 15:08:37 -0800
commitc7f971e8c02524ee2435406f0c14791b75c10e20 (patch)
treecc21fdd8de9cca5e62fbc25ff6ac27a9b497a64b /Makefile.local
parent9ea8bb11d4d35cc4222931ea498763fc705f1d02 (diff)
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.
Diffstat (limited to 'Makefile.local')
-rw-r--r--Makefile.local2
1 files changed, 1 insertions, 1 deletions
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 $^ > $@