From 7d63d7a08cc11858904b44edaf32d1bc2a52ff0f Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Tue, 1 Jan 2019 20:35:23 +1100 Subject: * configure.ac: Abort if AWK is not installed. * configure: Regenerate. --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 336b585..9ce1b08 100644 --- a/configure.ac +++ b/configure.ac @@ -30,6 +30,10 @@ AC_PROG_CXX AC_PROG_INSTALL AC_EXEEXT +if test -z "$AWK"; then + AC_MSG_ERROR([AWK not installed]) +fi + dnl Search for expect. AC_PATH_PROG([EXPECT], [expect]) if test -z $ac_cv_path_EXPECT ; then -- cgit v1.1