Skip to content

Commit

Permalink
Fix broken download of openssl-1.0.2t.tar.gz (open-webrtc-toolkit#460)
Browse files Browse the repository at this point in the history
  • Loading branch information
grgustaf authored Apr 9, 2020
1 parent cd77dc5 commit 77f6ea9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/installCommonDeps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,13 @@ install_openssl(){
$INCR_INSTALL && [[ ! -z $LIST_LIBS ]] && echo "openssl already installed." && return 0

if [ -d $LIB_DIR ]; then
local SSL_BASE_VERSION="1.0.2"
local SSL_VERSION="1.0.2t"
cd $LIB_DIR
rm -f ./build/lib/libssl.*
rm -f ./build/lib/libcrypto.*
rm -rf openssl-1*
wget -c http://www.openssl.org/source/openssl-${SSL_VERSION}.tar.gz
wget -c http://www.openssl.org/source/old/${SSL_BASE_VERSION}/openssl-${SSL_VERSION}.tar.gz
tar xf openssl-${SSL_VERSION}.tar.gz
cd openssl-${SSL_VERSION}
./config no-ssl3 --prefix=$PREFIX_DIR -fPIC
Expand Down

0 comments on commit 77f6ea9

Please sign in to comment.