diff options
author | Yves-Gael Cheny ( irc hurdman_begin ) <hurd@r0b0t.fr> | 2015-02-06 00:06:06 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-02-06 00:07:39 +0100 |
commit | 23f6c6d9b9cd3a1326da01438295b0216fad6ffb (patch) | |
tree | a4893c9487490cc728ba8a3c4d2d8b60cea1488c | |
parent | 5a2d1fb4db65d847d5bc9ea1cf5192bd81d8c7e5 (diff) | |
download | mig-23f6c6d9b9cd3a1326da01438295b0216fad6ffb.tar.gz mig-23f6c6d9b9cd3a1326da01438295b0216fad6ffb.tar.bz2 mig-23f6c6d9b9cd3a1326da01438295b0216fad6ffb.zip |
Check that yacc is provided by bison
* configure.ac: Check that yacc --version contains bison.
-rw-r--r-- | configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index efd542a..37bf432 100644 --- a/configure.ac +++ b/configure.ac @@ -25,6 +25,12 @@ dnl Checks for programs. AC_PROG_CC AC_PROG_CPP AC_PROG_YACC + +yacc_is_bison=`yacc --version | head -n 1 | cut '-d ' -f1` +[if [ x"$yacc_is_bison" != x"bison" ]; then ] + AC_MSG_ERROR([yacc is not provided by bison, check your alternative conf or your packages]) +[fi] + AM_PROG_LEX AC_PROG_AWK AC_PROG_INSTALL |