build: Add missing comma in AS_IF
authorMatt Turner <mattst88@gmail.com>
Tue, 29 Jan 2013 19:22:06 +0000 (11:22 -0800)
committerMatt Turner <mattst88@gmail.com>
Tue, 29 Jan 2013 21:19:18 +0000 (13:19 -0800)
Reported-by: Lauri Kasanen<curaga@operamail.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=47248#c15

configure.ac

index 1e352db6e8ea888de04d0b513621b221d7e0a4e5..564ca3ccfb72e988e697127042cba9240f8111c0 100644 (file)
@@ -57,10 +57,10 @@ LT_PREREQ([2.2])
 LT_INIT([disable-static])
 
 AX_PROG_BISON([],
-              AS_IF([test ! -f "$srcdir/src/glsl/glcpp/glcpp-parse.c"]
+              AS_IF([test ! -f "$srcdir/src/glsl/glcpp/glcpp-parse.c"],
                     [AC_MSG_ERROR([bison not found - unable to compile glcpp-parse.y])]))
 AX_PROG_FLEX([],
-             AS_IF([test ! -f "$srcdir/src/glsl/glcpp/glcpp-lex.c"]
+             AS_IF([test ! -f "$srcdir/src/glsl/glcpp/glcpp-lex.c"],
                    [AC_MSG_ERROR([flex not found - unable to compile glcpp-lex.l])]))
 
 AC_PATH_PROG([PERL], [perl])