diff options
author | Jon TURNEY <jon.turney@dronecode.org.uk> | 2015-09-04 12:43:06 +0100 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2015-09-07 10:43:32 +0100 |
commit | a1575b55c2384faa461e7802371c5ddd37e5befe (patch) | |
tree | fae023cf4ebdb41e9dbb87e47d0882bb8f75bf4f | |
parent | 5f9c72ad23e3f646c2007b70f482561c98b94ea7 (diff) |
mesa/tests: Remove unneeded X11_CFLAGS
X11_CFLAGS is never defined. Path to X11 headers is not needed here, so
just remove.
Future work: Using AM_CFLAGS here looks wrong, as this Makefile only builds
C++ files
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/mesa/main/tests/Makefile.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/tests/Makefile.am b/src/mesa/main/tests/Makefile.am index 9467f3ba8c..bd7ab7365c 100644 --- a/src/mesa/main/tests/Makefile.am +++ b/src/mesa/main/tests/Makefile.am @@ -1,5 +1,4 @@ AM_CFLAGS = \ - $(X11_CFLAGS) \ $(PTHREAD_CFLAGS) AM_CPPFLAGS = \ -I$(top_srcdir)/src/gtest/include \ |