summaryrefslogtreecommitdiffstats
path: root/ax25mond
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2015-05-17 01:26:36 +0200
committerRalf Baechle <ralf@linux-mips.org>2015-05-17 01:26:36 +0200
commit9624abfdffe94bd2519359526b4bb5abbaf95d66 (patch)
treec067dfa6b3d47ea9cd0ce1410eb6a4e9352b0cc0 /ax25mond
parent4c5e40d112326906a3e98fd31fd3646f8df2be92 (diff)
automake: Replace use of deprecated automake macro INCLUDES.
This fixes the automake warnings: Makefile.am:11: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') ax25ipd/Makefile.am:58: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') ax25mond/Makefile.am:46: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS') ax25rtd/Makefile.am:89: 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>
Diffstat (limited to 'ax25mond')
-rw-r--r--ax25mond/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/ax25mond/Makefile.am b/ax25mond/Makefile.am
index 577cf9d..e60db37 100644
--- a/ax25mond/Makefile.am
+++ b/ax25mond/Makefile.am
@@ -43,5 +43,5 @@ installconf:
AX25_SYSCONFDIR=$(sysconfdir)/ax25
AX25_LOCALSTATEDIR=$(localstatedir)/ax25
-INCLUDES = -DAX25_SYSCONFDIR=\""$(AX25_SYSCONFDIR)"\" \
- -DAX25_LOCALSTATEDIR=\""$(AX25_LOCALSTATEDIR)"\"
+AM_CPPFLAGS = -DAX25_SYSCONFDIR=\""$(AX25_SYSCONFDIR)"\" \
+ -DAX25_LOCALSTATEDIR=\""$(AX25_LOCALSTATEDIR)"\"