From 14aa104cc501239eeb772ea83e887d7a30f8fce7 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Wed, 5 Aug 2009 14:40:06 -0400 Subject: [PATCH] Only accept bison as yacc tool Others like byacc barf on some of the directives like %error-verbose. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d8ab968..e704b7f 100644 --- a/configure.ac +++ b/configure.ac @@ -41,7 +41,7 @@ if test "$LEX" = :; then AC_MSG_ERROR([flex not found but required]) fi -AC_CHECK_PROGS(YACC, 'bison -y' byacc yacc, :) +AC_CHECK_PROGS(YACC, 'bison -y', :) if test "$YACC" = :; then AC_MSG_ERROR([bison not found but required]) fi -- 2.39.2