diff options
author | Alexander Huemer <alexander.huemer@xx.vu> | 2013-06-11 14:19:48 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2013-06-12 07:53:30 +0200 |
commit | 1e4400d26a7e3a947a1d6235e7d0615506311860 (patch) | |
tree | b85c706b6e4022439fa7a676404421f202f9b854 | |
parent | 9ac453759cb9480244aa00ae4a1665c352a547f2 (diff) |
Makefile.am: Use AM_CPPFLAGS
Since automake 1.13 INCLUDES is depricates and causes a warning
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index c9b7ccd9..a77bd8f3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ACLOCAL_AMFLAGS = -I m4 -INCLUDES = $(all_includes) -I$(top_srcdir)/include +AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include SUBDIRS = include src src/vty src/codec src/gsm src/gb tests utils pkgconfigdir = $(libdir)/pkgconfig |