Skip to content

Commit

Permalink
change openssl prefix
Browse files Browse the repository at this point in the history
Signed-off-by: Ashish Tiwari <ashishjaitiwari15112000@gmail.com>
  • Loading branch information
Revolyssup committed Nov 9, 2023
1 parent 5ed04dc commit b3c5c67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/install-openssl-fips.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ if [ ! -d "$(pwd)/openssl-3.1.3" ]; then
tar xvf openssl-*.tar.gz
cd openssl-3.1.3
OPENSSL3_PREFIX=$(pwd)
./config enable-fips
./config enable-fips --prefix=/usr/local/openssl --openssldir=/usr/local/openssl
make -j $(nproc)
sudo make install
export LD_LIBRARY_PATH=$OPENSSL3_PREFIX${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
sudo ldconfig
export openssl_prefix="$OPENSSL3_PREFIX"
export openssl_prefix="/usr/local/openssl"
cd ..
fi

0 comments on commit b3c5c67

Please sign in to comment.