diff options
author | Lucas De Marchi <lucas.demarchi@profusion.mobi> | 2013-01-10 13:18:13 -0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2013-01-10 15:53:08 -0800 |
commit | 70bf0c35b716fa62f905259f4ff4b1fcb6939f19 (patch) | |
tree | dee04d9b843a57763c25387070011f89df276f23 | |
parent | c528844e8128fe8eb7da3269a0b5f5142a5690ff (diff) | |
download | neard-70bf0c35b716fa62f905259f4ff4b1fcb6939f19.tar.gz neard-70bf0c35b716fa62f905259f4ff4b1fcb6939f19.tar.bz2 neard-70bf0c35b716fa62f905259f4ff4b1fcb6939f19.zip |
build: Use AM_CPPFLAGS instead of INCLUDES
Makefile.am:50: warning: 'INCLUDES' is the old name for 'AM_CPPFLAGS' (or '*_CPPFLAGS')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 2dd3517..8c3571e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -47,7 +47,7 @@ AM_CFLAGS = @GLIB_CFLAGS@ @DBUS_CFLAGS@ @NETLINK_CFLAGS@ $(builtin_cflags) \ -DPLUGINDIR=\""$(plugindir)"\" \ -DCONFIGDIR=\""$(configdir)\"" -INCLUDES = -I$(builddir)/include -I$(builddir)/src -I$(srcdir)/gdbus +AM_CPPFLAGS = -I$(builddir)/include -I$(builddir)/src -I$(srcdir)/gdbus CLEANFILES = src/builtin.h $(local_headers) |