From: Jed Brown Date: Fri, 20 Nov 2009 15:58:15 +0000 (+0100) Subject: Drop redundant CFLAGS, was already included in CXXFLAGS X-Git-Tag: 0.1~391 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=49132ebc765f355b97671ef253c13d7af9f037a2 Drop redundant CFLAGS, was already included in CXXFLAGS --- diff --git a/Makefile b/Makefile index b6861e9c..f9f7af03 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ include lib/Makefile.local include Makefile.config %.o: %.cc $(all_deps) - $(CXX) -c $(CFLAGS) $(CXXFLAGS) $< -o $@ + $(CXX) -c $(CXXFLAGS) $< -o $@ %.o: %.c $(all_deps) $(CC) -c $(CFLAGS) $< -o $@