From b65ff5293ae8d712eddbb8091d3ed8ae0f9ca641 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sun, 18 Nov 2018 18:49:16 -0500 Subject: [PATCH] Make CMake configurable in test script --- TestScripts/cryptest-cmake.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/TestScripts/cryptest-cmake.sh b/TestScripts/cryptest-cmake.sh index 93e6378a..84750208 100755 --- a/TestScripts/cryptest-cmake.sh +++ b/TestScripts/cryptest-cmake.sh @@ -19,6 +19,11 @@ else MAKE=make fi +# Fixup for AIX +if [[ -z "$CMAKE" ]]; then + CMAKE=cmake +fi + # Feth the three required files if ! wget --no-check-certificate https://raw.githubusercontent.com/noloader/cryptopp-cmake/master/CMakeLists.txt -O CMakeLists.txt; then echo "CMakeLists.txt download failed"