]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Convert Common.am snippet from @ variable style.
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 23 Nov 2009 02:19:12 +0000 (15:19 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 23 Nov 2009 02:19:12 +0000 (15:19 +1300)
src/Common.am

index 084f108ccae7a797bde88ec5940d726665d8d784..3cbfe90832e688174a19222687b4150d805f76cf 100644 (file)
@@ -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?