From d87b34f98283797a13e983f37ef9dd9f43407602 Mon Sep 17 00:00:00 2001 From: Neil Roberts Date: Thu, 22 Jul 2010 16:12:46 +0100 Subject: [PATCH] Fix a small typo in configure.ac for the COGL_DEFINES variable There was an initializer for the COGL_DEFINES variable which sets it to the empty value before it is filled in. The name of the variable wasn't spelt right so it wouldn't work properly. This doesn't really matter because it would default to empty anyway. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index beb44870a..028ca90c2 100644 --- a/configure.ac +++ b/configure.ac @@ -474,7 +474,7 @@ AM_CONDITIONAL(USE_GLES2_WRAPPER, [test "x$use_gles2_wrapper" = "xyes"]) dnl The value of this variable will directly go in the install dnl cogl-defines.h header -COGL_DEFINES_=""; +COGL_DEFINES=""; dnl Space-separated list of symbols that should be defined in dnl cogl-defines.h COGL_DEFINES_SYMBOLS="";