Only accept bison as yacc tool
authorColin Walters <walters@verbum.org>
Wed, 5 Aug 2009 18:40:06 +0000 (14:40 -0400)
committerColin Walters <walters@verbum.org>
Wed, 5 Aug 2009 18:41:58 +0000 (14:41 -0400)
Others like byacc barf on some of the directives like %error-verbose.

configure.ac

index d8ab968..e704b7f 100644 (file)
@@ -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