From 1b98fd6a2e8c00a563187849a585e68c7344468b Mon Sep 17 00:00:00 2001 From: Alan Coopersmith Date: Tue, 15 Jan 2013 18:51:39 -0800 Subject: Replace deprecated Automake INCLUDES variable with AM_CPPFLAGS Excerpt https://lists.gnu.org/archive/html/automake/2012-12/msg00038.html - Support for the long-deprecated INCLUDES variable will be removed altogether in Automake 1.14. The AM_CPPFLAGS variable should be used instead. This variable was deprecated in Automake releases prior to 1.10, which is the current minimum level required to build X. Signed-off-by: Alan Coopersmith --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Makefile.am index a44dcb3..a6bee09 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -12,7 +12,7 @@ AM_CFLAGS = \ -DICONDIR=\"$(ICONDIR)\" \ -DXCURSORPATH=\"$(XCURSORPATH)\" -INCLUDES = -I$(top_srcdir)/include/X11/Xcursor +AM_CPPFLAGS = -I$(top_srcdir)/include/X11/Xcursor # # Shared library version info. This is not the same as the package version -- cgit v1.2.1