diff options
author | Eric Leblond <eric@inl.fr> | 2009-01-22 14:11:14 +0100 |
---|---|---|
committer | Eric Leblond <eric@inl.fr> | 2009-01-22 14:11:14 +0100 |
commit | 13643ceb7396101cc8611c5c366df2a7f0fa5c17 (patch) | |
tree | fe39df0431c517a62363a72524dd93bfb2c60565 /output/pcap/Makefile.am | |
parent | 71d45403400bdb18bc6ae5efaf4772f6b847c351 (diff) |
Replace INCLUDES by AM_CPPFLAGS in Makefile.am.
This patch fixes autotools warning about deprecated usage of INCLUDES in
Makefile.am.
Diffstat (limited to 'output/pcap/Makefile.am')
-rw-r--r-- | output/pcap/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/output/pcap/Makefile.am b/output/pcap/Makefile.am index 5e2019f..b77b2d3 100644 --- a/output/pcap/Makefile.am +++ b/output/pcap/Makefile.am @@ -1,5 +1,5 @@ -INCLUDES = $(all_includes) -I$(top_srcdir)/include $(PCAP_INC) +AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include $(PCAP_INC) LIBS=$(PCAP_LIB) if HAVE_PCAP |