Skip to content

Commit 71f38e6

Browse files
authored
Merge pull request #4850 from danpovey/fix_liblbfgs
Fix download location in install_liblbfgs.sh
2 parents 1918508 + 5ef3962 commit 71f38e6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tools/extras/install_liblbfgs.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@ if [ ! -f liblbfgs-$VER.tar.gz ]; then
88
if [ -d "$DOWNLOAD_DIR" ]; then
99
cp -p "$DOWNLOAD_DIR/liblbfgs-$VER.tar.gz" . || exit 1
1010
else
11-
$WGET https://github.com/downloads/chokkan/liblbfgs/liblbfgs-$VER.tar.gz || exit 1
11+
# only 1.10 supported
12+
$WGET https://danielpovey.com/files/liblbfgs-$VER.tar.gz || exit 1
13+
# $WGET https://github.com/downloads/chokkan/liblbfgs/liblbfgs-$VER.tar.gz || exit 1
1214
fi
1315
fi
1416

@@ -37,4 +39,3 @@ cd ..
3739
echo "export LIBLBFGS=$wd/liblbfgs-1.10"
3840
echo export LD_LIBRARY_PATH='${LD_LIBRARY_PATH:-}':'${LIBLBFGS}'/lib/.libs
3941
) >> env.sh
40-

0 commit comments

Comments
 (0)