From fb303f5180c1954b00c1dec9039de692b6688e29 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 26 Sep 2018 16:22:19 -0400 Subject: [PATCH] Fix unset MAKE variable in test scripts --- TestScripts/cryptest-autotools.sh | 3 +++ TestScripts/cryptest-cmake.sh | 2 ++ 2 files changed, 5 insertions(+) diff --git a/TestScripts/cryptest-autotools.sh b/TestScripts/cryptest-autotools.sh index a4ca61b4..d0ce2379 100755 --- a/TestScripts/cryptest-autotools.sh +++ b/TestScripts/cryptest-autotools.sh @@ -34,9 +34,12 @@ if [[ "$IS_DARWIN" -ne 0 ]]; then export LC_ALL=C fi +# Fixup for Solaris and BSDs # Fixup for Solaris and BSDs if [[ ! -z $(command -v gmake) ]]; then MAKE=gmake +else + MAKE=make fi # Fixup for missing libtool diff --git a/TestScripts/cryptest-cmake.sh b/TestScripts/cryptest-cmake.sh index 4135faa1..d7607dd1 100755 --- a/TestScripts/cryptest-cmake.sh +++ b/TestScripts/cryptest-cmake.sh @@ -15,6 +15,8 @@ fi # Fixup for Solaris and BSDs if [[ ! -z $(command -v gmake) ]]; then MAKE=gmake +else + MAKE=make fi # Feth the three required files