Skip to content
This repository was archived by the owner on Oct 23, 2024. It is now read-only.

Commit 53a2d39

Browse files
committed
prevent generating to lib64/libssl*
in some centos7 environment, openssl will be installed to lib64 folder specify --libdir=lib to prevent that
1 parent 68c4e56 commit 53a2d39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/installCommonDeps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ install_openssl(){
160160
wget -c https://www.openssl.org/source/openssl-${SSL_VERSION}.tar.gz
161161
tar xf openssl-${SSL_VERSION}.tar.gz
162162
cd openssl-${SSL_VERSION}
163-
./config no-ssl3 --prefix=$PREFIX_DIR -fPIC
163+
./config no-ssl3 --prefix=$PREFIX_DIR -fPIC --libdir=lib
164164
make depend
165165
make -s V=0
166166
make install

0 commit comments

Comments
 (0)