Skip to content

Commit

Permalink
Fix openssl build
Browse files Browse the repository at this point in the history
  • Loading branch information
geneotech committed Feb 13, 2024
1 parent 3e0692f commit eeb7672
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions cmake/linux_actions/install_openssl3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,19 @@ sudo tar xvf "${OPENSSL_VERSION}.tar.gz"
# Navigate to the extracted OpenSSL directory
cd "${OPENSSL_VERSION}/"

echo "OpenSSL3: Calling ./config"
# Configure OpenSSL
./config
sudo ./config

echo "OpenSSL3: Calling make"
# Build OpenSSL
make
sudo make

echo "OpenSSL3: Calling make test"
# Run tests (optional, can be skipped with 'make -k test' if some tests fail)
make test
sudo make test

echo "OpenSSL3: Calling make install"
# Install OpenSSL
sudo make install

Expand Down

0 comments on commit eeb7672

Please sign in to comment.