From 3a9fb6539f783bbd7f3f895988a080d7b49fc7fb Mon Sep 17 00:00:00 2001 From: Lorenzo Figini Date: Fri, 19 Nov 2021 12:56:31 +0000 Subject: [PATCH] Small changes in configure log messages --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index f31317d..3097c8c 100755 --- a/configure +++ b/configure @@ -14,7 +14,7 @@ arch=`uname -m` echo "Processor architecture $arch" check() { - printf "checking for %s... " $1 && command -v $1 || (echo "not found"; exit 1) + printf "Looking for %s... " $1 && command -v $1 || (echo "not found"; exit 1) return $? } @@ -25,7 +25,7 @@ if [ $? -ne 0 ]; then echo "Fortran compiler not found. Cannot proceed" exit 1 else - echo "Set $FC as Fortran compiler" + echo "Use $FC as Fortran compiler" fi -$FC --version +# $FC --version