Fixed cmake build for CentOS

This commit is contained in:
Pavel Odintsov 2020-06-06 17:57:26 +01:00
parent 3f31ac3f51
commit 20351fd3b7

View File

@ -1446,7 +1446,11 @@ sub install_icu {
sub install_cmake_dependencies {
apt_get("libssl-dev");
if ($distro_type eq 'debian' or $distro_type eq 'ubuntu') {
apt_get("libssl-dev");
} elsif ($distro_type eq 'centos') {
yum("openssl-devel");
}
}
sub install_cmake {