From 8d99118dc5b7d86c23a20a9eedc1055badd566d6 Mon Sep 17 00:00:00 2001 From: Omar Polo Date: Fri, 26 Feb 2021 19:19:44 +0000 Subject: [PATCH] use autoconf' ${AWK} instead of looking for gawk This also fixes an instance of `awk' that should be ${AWK} --- configure.ac | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index f9ecc21..31e2888 100644 --- a/configure.ac +++ b/configure.ac @@ -50,11 +50,10 @@ if test "$BASH" = "no" ; then exit 1; fi -AC_PATH_PROG([GAWK],[gawk],[no]) - -if test "$GAWK" = "no" ; then - AC_MSG_ERROR([Can not find GNU AWK (gawk).]) - exit 1; +dnl autoconf has an automatic test for AWK +if test -z "${AWK}"; then + AC_MSG_ERROR([Can not find AWK.]) + exit 1 fi AC_PATH_PROGS([XDG_OPEN],[xdg-open open],[no]) @@ -75,14 +74,14 @@ AC_PROG_MKDIR_P dnl check sbcl version SBCL_MIN_VERSION="1.4.16"; -SBCL_VERSION=`${LISP_COMPILER} --version | ${GAWK} -- '// {print $2}'` +SBCL_VERSION=`${LISP_COMPILER} --version | ${AWK} -- '// {print $2}'` CHECK_COMPILER_VERSION_P="yes" AC_ARG_ENABLE([check-sbcl-version], [AS_HELP_STRING([--disable-check-sbcl-version], [Disable checks for minimum supported SBCL version])], [], []) if test "$enable_check_sbcl_version" = "yes" || test "$enable_check_sbcl_version" = "" ; then - SBCL_VERSION_OK=`echo "$SBCL_VERSION $SBCL_MIN_VERSION" | awk -f compare_version.awk` + SBCL_VERSION_OK=`echo "$SBCL_VERSION $SBCL_MIN_VERSION" | ${AWK} -f compare_version.awk` AC_MSG_CHECKING([if the compiler is too old]) AC_MSG_NOTICE([To Disable this tests use type './configure --disable-check-sbcl-version.])