diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2015-05-17 00:57:21 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2015-05-17 00:57:21 +0200 |
commit | ab89e6df2aaed44436a9fa042568214852e73720 (patch) | |
tree | 9722ac74c213e7be8c4f24a18d7522c7c2f77c01 | |
parent | c53b7e891a9a481d6237f85962cbc1d634061562 (diff) |
automake: Replace use of deprecated automake macro INCLUDES.
This fixes the automake warning:
Makefile.am:6: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
INCLUDES has been deprecated since automake 1.5.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index dcdcc83..00ec642 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,8 +3,8 @@ lib_LTLIBRARIES = libax25.la libax25io.la libax25includedir = $(includedir) libax25ioincludedir = $(includedir) -INCLUDES = -DAX25_SYSCONFDIR=\""$(sysconfdir)/ax25/"\" \ - -DAX25_LOCALSTATEDIR=\""$(localstatedir)/ax25/"\" +AM_CPPFLAGS = -DAX25_SYSCONFDIR=\""$(sysconfdir)/ax25/"\" \ + -DAX25_LOCALSTATEDIR=\""$(localstatedir)/ax25/"\" if !AX25_H USE_LIBAX25_AX25_H = netax25/ax25.h |