Exit check-environment script if make installation is unsupported.

This commit is contained in:
levlam 2023-04-25 19:55:44 +03:00
parent 5ad95e78bf
commit 132566b393

View File

@ -34,6 +34,7 @@ done
if [[ $(which make) = *" "* ]] ; then
echo "Error: OpenSSL expects that full path to make tool doesn't contain spaces. Move it to some other place."
exit 1
fi
if ! perl -MExtUtils::MakeMaker -MLocale::Maketext::Simple -MPod::Usage -e '' >/dev/null 2>&1 ; then