* configure: Regenerate.
@ -1,3 +1,8 @@
2019-01-01 Ben Elliston <bje@gnu.org>
* configure.ac: Abort if AWK is not installed.
* config.guess: Update to latest version.
@ -3987,6 +3987,10 @@ fi
if test -z "$AWK"; then
as_fn_error $? "AWK not installed" "$LINENO" 5
fi
# Extract the first word of "expect", so it can be a program name with args.
set dummy expect; ac_word=$2
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
@ -30,6 +30,10 @@ AC_PROG_CXX
AC_PROG_INSTALL
AC_EXEEXT
AC_MSG_ERROR([AWK not installed])
dnl Search for expect.
AC_PATH_PROG([EXPECT], [expect])
if test -z $ac_cv_path_EXPECT ; then