]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Convert Common.am snippet from @ variable style.
authorAmos Jeffries <squid3@treenet.co.nz>
Sat, 21 Nov 2009 05:29:45 +0000 (18:29 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Sat, 21 Nov 2009 05:29:45 +0000 (18:29 +1300)
src/Common.am

index 0072bc8fff724cf28fe93bb6f4088d3a7769c646..15c60bb7e6afd42fa0013c98c49d22907c0e3b05 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,11 +18,11 @@ INCLUDES = \
        -I$(top_srcdir)/include \
        -I$(top_srcdir)/src \
        -I$(top_builddir)/include \
-       @SQUID_CPPUNIT_INC@
+       $(SQUID_CPPUNIT_INC)
 
 ## Kerberos headers require their include path.
 ## Because we use libcompat for comm_err.h header protections ...
-INCLUDES += @KRB5INCS@
+INCLUDES += $(KRB5INCS)
 
 ## make all compiled sources depend on generated files
 ## XXX: Do we really need this? Does auto-dependency tracking work?