From: Amos Jeffries Date: Mon, 23 Nov 2009 02:19:12 +0000 (+1300) Subject: Convert Common.am snippet from @ variable style. X-Git-Tag: SQUID_3_1_0_15~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=da0c8f64d70e167d215e5ff0900db1afb16b103b;p=thirdparty%2Fsquid.git Convert Common.am snippet from @ variable style. --- diff --git a/src/Common.am b/src/Common.am index 084f108cca..3cbfe90832 100644 --- a/src/Common.am +++ b/src/Common.am @@ -4,8 +4,8 @@ ## so it must not contain stuff specific to or bad for some subdirectories. ## TODO: make this set by configure? -AM_CFLAGS = @SQUID_CFLAGS@ -AM_CXXFLAGS = @SQUID_CXXFLAGS@ +AM_CFLAGS = $(SQUID_CFLAGS) +AM_CXXFLAGS = $(SQUID_CXXFLAGS) DEFS = @DEFS@ ## so that others can always use += for these variables @@ -18,7 +18,7 @@ INCLUDES = \ -I$(top_srcdir)/include \ -I$(top_srcdir)/src \ -I$(top_builddir)/include \ - @SQUID_CPPUNIT_INC@ + $(SQUID_CPPUNIT_INC) ## make all compiled sources depend on generated files ## XXX: Do we really need this? Does auto-dependency tracking work?