From 97bb4887856e9ce259f14df84ea5d9dfc41cde4f Mon Sep 17 00:00:00 2001 From: Evan Miller Date: Sun, 18 Oct 2020 09:48:38 -0400 Subject: [PATCH] Use AC_MSG_ERROR instead of echo/exit --- configure.ac | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index f5de28d..653e4ec 100644 --- a/configure.ac +++ b/configure.ac @@ -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)