I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Verified Commit 6ad90ca3 authored by idk's avatar idk
Browse files

Change the gmp mirror so that when you try to build a jbigi.jar it does not...

Change the gmp mirror so that when you try to build a jbigi.jar it does not fail. Can be changed back by editing core/c/jbigi/download_gmp.sh
parent edfc9b14
No related branches found
No related tags found
No related merge requests found
......@@ -13,11 +13,12 @@ export GMP_VER=6.2.1
export GMP_TARVER=${GMP_VER}
export GMP_DIR="gmp-$GMP_VER"
export GMP_TAR="gmp-$GMP_TARVER.tar.bz2"
export GMP_TAR_MIRROR="https://ftp.gnu.org/gnu/gmp/" # This mirror works
#export GMP_TAR_MIRROR="https://gmplib.org/download/gmp/" #This is the upstream, but they have an expired TLS certificate.
download_tar()
{
GMP_TAR_URL="https://gmplib.org/download/gmp/${GMP_TAR}"
GMP_TAR_URL="${GMP_TAR_MIRROR}${GMP_TAR}"
if [ $(which wget) ]; then
echo "Downloading $GMP_TAR_URL"
wget -N --progress=dot $GMP_TAR_URL
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment