Use AC_MSG_ERROR instead of echo/exit

This commit is contained in:
Evan Miller 2020-10-18 09:48:38 -04:00
parent 888ad9fe3f
commit 97bb488785

View File

@ -181,9 +181,7 @@ fi
if test "x$HAVE_ODBC" = "xtrue"; then
if test "x$sql" != "xtrue" ; then
echo
echo ODBC requires flex and bison for the SQL engine
exit 1
AC_MSG_ERROR([ODBC requires flex and bison for the SQL engine])
fi
AC_SUBST(ODBC_CFLAGS)