From 2df3c361efc1d7ac4ec93a5457096b3bd2ce1935 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg?= Date: Sun, 2 May 2010 14:52:39 -0400 Subject: [PATCH] configure.ac: Fix test for whether to build src/gles --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ef8a7eef82b..354c220b5c9 100644 --- a/configure.ac +++ b/configure.ac @@ -763,7 +763,7 @@ if test "x$enable_gles2" = xyes; then APIS="$APIS es2" ES2_SOURCES='$(ES2_SOURCES)' fi -if test "x$enable_gles1" = xyes -o "x$enable_gles2"; then +if test "x$enable_gles1" = xyes -o "x$enable_gles2" = xyes; then SRC_DIRS="$SRC_DIRS gles" fi AC_SUBST([API_DEFINES]) -- 2.11.0