From dfb6142548df0dccbe6eed2c57986e208eb0d437 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Fri, 13 Jan 2012 14:31:39 -0500 Subject: 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 Tested-by: Eric Anholt Signed-off-by: Matt Turner --- configs/autoconf.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configs') 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@ -- cgit v1.2.3