mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-30 16:30:43 +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
|
AM_PROG_LIBTOOL
|
||||||
|
|
||||||
AC_PROG_YACC
|
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)
|
AC_MSG_ERROR(GNU bison is required but wasn't found)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AM_PROG_LEX
|
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)
|
AC_MSG_ERROR(GNU flex is required but wasn't found)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue