diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-15 18:30:32 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-01-16 23:32:52 -0800 |
commit | b8dd42dce868f9c16a59790ce51f0542b59cb79d (patch) | |
tree | c4bbc26376eaaf02b808e45ff966b9c20c6f720f /src/stubs | |
parent | 8d946d2606b3a349b2a54d602e027a09ae330e88 (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>
Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'src/stubs')
-rw-r--r-- | src/stubs/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stubs/Makefile.am b/src/stubs/Makefile.am index 86dd8fc..23e3bd1 100644 --- a/src/stubs/Makefile.am +++ b/src/stubs/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = \ +AM_CPPFLAGS = \ -I${top_srcdir}/include AM_CFLAGS = $(XFONT_CFLAGS) $(OS_CFLAGS) $(CWARNFLAGS) |