diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-09-04 12:43:05 +0100 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2015-09-07 10:43:32 +0100 |
commit | 5f9c72ad23e3f646c2007b70f482561c98b94ea7 (patch) | |
tree | a272455f46cccb1c83e74d7c81f24c7916453156 | |
parent | f1ef89eaab765789d777a5bd1bdfcb7811e3a22d (diff) |
glxl/tests: Use X11_INCLUDES instead of X11_CFLAGS
X11_CFLAGS is undefined, so these tests will fail to build if x11proto is
installed in a non-standard location.
(See also commits 35189d76, bc93c3798, 54b028ba, d901d7e08, etc.)
Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Reviewed-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
-rw-r--r-- | src/glx/tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/tests/Makefile.am b/src/glx/tests/Makefile.am index b02a9e3770..bdc78c0d5a 100644 --- a/src/glx/tests/Makefile.am +++ b/src/glx/tests/Makefile.am @@ -10,7 +10,7 @@ AM_CPPFLAGS = \ -I$(top_srcdir)/include/GL/internal \ $(DEFINES) \ $(LIBDRM_CFLAGS) \ - $(X11_CFLAGS) + $(X11_INCLUDES) TESTS = glx-test check_PROGRAMS = glx-test |