mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-22 18:31:27 +00:00
hopefully a more accurate check for bison and flex
This commit is contained in:
parent
ff02dfbbbc
commit
e16e087deb
1 changed files with 2 additions and 2 deletions
|
@ -93,12 +93,12 @@ AC_LIBTOOL_WIN32_DLL
|
|||
AM_PROG_LIBTOOL
|
||||
|
||||
AC_PROG_YACC
|
||||
if echo $YACC | grep -vq bison; then
|
||||
if echo $YACC | grep -v bison > /dev/null; then
|
||||
AC_MSG_ERROR(GNU bison is required but wasn't found)
|
||||
fi
|
||||
|
||||
AM_PROG_LEX
|
||||
if echo $LEX | grep -vq flex; then
|
||||
if echo $LEX | grep -v flex > /dev/null; then
|
||||
AC_MSG_ERROR(GNU flex is required but wasn't found)
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue