From: Carl Worth Date: Fri, 4 Dec 2009 23:08:37 +0000 (-0800) Subject: Fix quiet compilation to print the user's CFLAGS, CXXFLAGS, LDFLAGS. X-Git-Tag: 0.1~225 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=c7f971e8c02524ee2435406f0c14791b75c10e20;hp=c7f971e8c02524ee2435406f0c14791b75c10e20 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. ---