diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-15 18:51:39 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-15 18:51:39 -0800 |
commit | 1b98fd6a2e8c00a563187849a585e68c7344468b (patch) | |
tree | 6b5357b4e3537b362204ef73de80bde3bc32d67d | |
parent | 2a9eaf3305d1577ad763d56dddd46e10f8d0676b (diff) |
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 <alan.coopersmith@oracle.com>
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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 |