1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2025-07-23 04:49:06 +00:00
Files
MyLFS-big_bash_script/phase4/openssl.sh
2023-02-18 23:22:36 -05:00

24 lines
422 B
Bash

# OpenSSL Phase 4
./config --prefix=/usr \
--openssldir=/etc/ssl \
--libdir=lib \
shared \
zlib-dynamic
make
if $RUN_TESTS
then
set +e
make test
set -e
fi
sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile
make MANSUFFIX=ssl install
mv /usr/share/doc/openssl /usr/share/doc/openssl-3.0.5
cp -fr doc/* /usr/share/doc/openssl-3.0.5