diff options
author | David Lamparter <equinox@opensourcerouting.org> | 2014-06-28 22:23:10 +0200 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2015-02-14 19:19:14 +0100 |
commit | 237aac56960575f6ad2451ba2796d94bd5ae4b33 (patch) | |
tree | f23c49fa32bc6b706bd5f37a9a3a45ce27adf15d /lib | |
parent | b6fa76098d127f5641a7dda0dee21f06ca167edb (diff) | |
download | quagga-237aac56960575f6ad2451ba2796d94bd5ae4b33.tar.bz2 quagga-237aac56960575f6ad2451ba2796d94bd5ae4b33.tar.xz |
build: get rid of INCLUDES, use AM_CPPFLAGS
INCLUDES in configure.ac was not used at all, and INCLUDES in
Makefile.am is supposed to be AM_CPPFLAGS these days.
Reduces warnings spewed during bootstrap/autoreconf.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Acked-by: Greg Troxel <gdt@ir.bbn.com>
Acked-by: Feng Lu <lu.feng@6wind.com>
Acked-by: Paul Jakma <paul@jakma.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.am b/lib/Makefile.am index bd210929..5a806183 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to produce Makefile.in. -INCLUDES = @INCLUDES@ -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib +AM_CPPFLAGS = -I.. -I$(top_srcdir) -I$(top_srcdir)/lib -I$(top_builddir)/lib DEFS = @DEFS@ -DSYSCONFDIR=\"$(sysconfdir)/\" lib_LTLIBRARIES = libzebra.la |