diff --git a/plugins/php/lib/openssl.sh b/plugins/php/lib/openssl.sh index 48c212d9f..4d6294eac 100644 --- a/plugins/php/lib/openssl.sh +++ b/plugins/php/lib/openssl.sh @@ -30,9 +30,9 @@ if [ ! -d ${SERVER_ROOT}/openssl ];then if [ ! -f ${SOURCE_ROOT}/openssl-1.1.1p.tar.gz ];then wget -O ${SOURCE_ROOT}/openssl-1.1.1p.tar.gz https://www.openssl.org/source/openssl-1.1.1p.tar.gz fi - tar -zxf openssl-1.1.1p.tar.gz + tar -zxvf openssl-1.1.1p.tar.gz cd openssl-1.1.1p - ./config --openssldir=${SERVER_ROOT}/openssl zlib-dynamic shared + ./config --prefix=${SERVER_ROOT}/openssl zlib-dynamic shared make && make install fi