From ac8aaa2024d8f5b3cbec9163611f005e8cb742e8 Mon Sep 17 00:00:00 2001 From: BrandonJLazard Date: Thu, 20 Jun 2024 11:05:31 -0600 Subject: [PATCH] Updated error code message for incorrect configuration --- configure | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 30fd0974..bc54cc3f 100755 --- a/configure +++ b/configure @@ -477,16 +477,18 @@ done if [ "$USE_MKL" == "TRUE" ] then - echo "Correct Configuration" + echo "" elif [[ ! -z $FFTWROOT && ! -z $BLASROOT && ! -z $LPROOT ]]; then - echo "Correct Configuration" + echo "" elif [[ ! -z $FFTWROOT && ! -z $BLASROOT && "$USEOPENBLAS" == "TRUE" ]] then - echo "Correct Configuration" + echo "" else - echo "Error Code 1" - echo "Incorrect configuration" + echo "Configuration Error: One of the three combinations must be satisfied" + echo " 1)The location of MKL is specified." + echo " 2)The location of fftw, blas, and lapack is specified." + echo " 3)The location of fftw, blas, and openblas is specified." exit 1 fi