diff options
author | Matt Turner <[email protected]> | 2012-01-13 14:31:39 -0500 |
---|---|---|
committer | Matt Turner <[email protected]> | 2012-01-30 21:09:32 -0500 |
commit | dfb6142548df0dccbe6eed2c57986e208eb0d437 (patch) | |
tree | 61d4d262dcc3ccb99d2682ff81e4008d2b615d74 /configs/autoconf.in | |
parent | 4ff8fd93e8e91672bb02543ecaa0c6e462a87551 (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 <[email protected]>
Tested-by: Eric Anholt <[email protected]>
Signed-off-by: Matt Turner <[email protected]>
Diffstat (limited to 'configs/autoconf.in')
-rw-r--r-- | configs/autoconf.in | 4 |
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@ |