From 0d7f17f3303bdcd5bfab4bdd5714bbd26dd2631a Mon Sep 17 00:00:00 2001 From: Daniel Povey Date: Tue, 2 May 2023 23:44:15 +0800 Subject: [PATCH] Fix download location in install_liblbfgs.sh --- tools/extras/install_liblbfgs.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) mode change 100644 => 100755 tools/extras/install_liblbfgs.sh diff --git a/tools/extras/install_liblbfgs.sh b/tools/extras/install_liblbfgs.sh old mode 100644 new mode 100755 index 10f72cad84f..8a726dd144d --- a/tools/extras/install_liblbfgs.sh +++ b/tools/extras/install_liblbfgs.sh @@ -1,7 +1,9 @@ #!/bin/bash + VER=1.10 -if [ ! -f liblbfgs-$VER.tar.gz ]; then - wget https://github.com/downloads/chokkan/liblbfgs/liblbfgs-$VER.tar.gz +if [ ! -f liblbfgs$VER.tar.gz ]; then + wget https://danielpovey.com/files/liblbfgs-1.10.tar.gz + ## wget https://github.com/downloads/chokkan/liblbfgs/liblbfgs-$VER.tar.gz fi tar -xzf liblbfgs-$VER.tar.gz @@ -29,4 +31,3 @@ cd .. echo "export LIBLBFGS=$wd/liblbfgs-1.10" echo export LD_LIBRARY_PATH='${LD_LIBRARY_PATH:-}':'${LIBLBFGS}'/lib/.libs ) >> env.sh -