summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2009-08-05 14:40:06 -0400
committerColin Walters <walters@verbum.org>2009-08-05 14:41:58 -0400
commit14aa104cc501239eeb772ea83e887d7a30f8fce7 (patch)
treeb826ed1a25d555535878c2b1cfab953d496f9d1a
parentcb5fa7457f3d277e194d5ea7ba620632f3f4b6c0 (diff)
downloadgobject-introspection-14aa104cc501239eeb772ea83e887d7a30f8fce7.tar.gz
Only accept bison as yacc tool
Others like byacc barf on some of the directives like %error-verbose.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d8ab9683..e704b7fa 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