From 14dd03544e198613264127019b03c0059e24463b Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Mon, 16 Jul 2018 10:53:11 -0400 Subject: [PATCH] Update cryptest-automake test script for Solaris --- TestScripts/cryptest-autotools.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/TestScripts/cryptest-autotools.sh b/TestScripts/cryptest-autotools.sh index 7a02e3e8..04fd3489 100755 --- a/TestScripts/cryptest-autotools.sh +++ b/TestScripts/cryptest-autotools.sh @@ -22,6 +22,11 @@ if [[ "$IS_DARWIN" -ne 0 ]]; then export LC_ALL=C fi +# Fixup for Solaris and BSDs +if [[ ! -z $(command -v gmake) ]]; then + MAKE=gmake +fi + # Feth the three required files if ! wget --no-check-certificate https://raw.githubusercontent.com/noloader/cryptopp-autotools/master/Makefile.am -O Makefile.am; then echo "Makefile.am download failed"