summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2012-01-13 14:31:39 -0500
committerMatt Turner <mattst88@gmail.com>2012-01-30 21:09:32 -0500
commitdfb6142548df0dccbe6eed2c57986e208eb0d437 (patch)
tree61d4d262dcc3ccb99d2682ff81e4008d2b615d74 /configs
parent4ff8fd93e8e91672bb02543ecaa0c6e462a87551 (diff)
autoconf: use AC_PROG_YACC/LEX
Needed for automake. Using AC_PROG_PATH(bison/flex) causes automake to fail to build .y and .l files. It is up to the builder to use bison/flex instead of yacc/lex. Reviewed-by: Eric Anholt <eric@anholt.net> Tested-by: Eric Anholt <eric@anholt.net> Signed-off-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'configs')
-rw-r--r--configs/autoconf.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/autoconf.in b/configs/autoconf.in
index a8aa42dd887..bb8f2c3c901 100644
--- a/configs/autoconf.in
+++ b/configs/autoconf.in
@@ -63,8 +63,8 @@ PYTHON2 = @PYTHON2@
PYTHON_FLAGS = -t -O -O
# Flex and Bison for GLSL compiler
-FLEX = @FLEX@
-BISON = @BISON@
+FLEX = @LEX@
+BISON = @YACC@
# Library names (base name)
GL_LIB = @GL_LIB@