diff options
author | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-01-26 19:39:47 +0100 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2009-01-26 19:39:47 +0100 |
commit | bf08896f823d350f020b7d37940e41cb7107c28a (patch) | |
tree | fc397ffd76791d36e168a2efa8df1855b701993e /Make_global.am | |
parent | 4dd73e4e34b57685d8a85e041f6a0b4a65200e30 (diff) | |
download | conntrack-tools-bf08896f823d350f020b7d37940e41cb7107c28a.tar.gz conntrack-tools-bf08896f823d350f020b7d37940e41cb7107c28a.zip |
build: replace INCLUDES by AM_CPPFLAGS according to autoreconf
This patch replaces INCLUDES by AM_CPPFLAGS according to a
suggestion from autoreconf.
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'Make_global.am')
-rw-r--r-- | Make_global.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Make_global.am b/Make_global.am index 2eeb886..810253a 100644 --- a/Make_global.am +++ b/Make_global.am @@ -1,4 +1,4 @@ -INCLUDES=$(all_includes) -I$(top_srcdir)/include +AM_CPPFLAGS=$(all_includes) -I$(top_srcdir)/include AM_CFLAGS = -std=gnu99 -W -Wall \ -Wmissing-prototypes -Wwrite-strings -Wcast-qual -Wfloat-equal -Wshadow -Wpointer-arith -Wbad-function-cast -Wsign-compare -Waggregate-return -Wmissing-declarations -Wredundant-decls -Wnested-externs -Winline -Wstrict-prototypes -Wundef \ |