fix error messages

This commit is contained in:
edoapra 2022-11-21 18:11:58 -08:00
parent 5bffdac2d2
commit 79b4a0aa93
No known key found for this signature in database
GPG key ID: 48E12DA1EDE9E1B0

View file

@ -107,7 +107,7 @@ if [[ -z "${CMAKE}" ]]; then
get_cmake_release $cmake_instdir
status=$?
if [ $status -ne 0 ]; then
echo cmake required to build scalapack
echo cmake required to build simint
echo Please install cmake
echo define the CMAKE env. variable
exit 1
@ -124,7 +124,7 @@ if ((CMAKE_VER_MAJ < 3)) || (((CMAKE_VER_MAJ > 2) && (CMAKE_VER_MIN < 21))); the
get_cmake_release $cmake_instdir
status=$?
if [ $status -ne 0 ]; then
echo cmake required to build scalapack
echo cmake 3.21 required to build simint
echo Please install cmake
echo define the CMAKE env. variable
exit 1