Skip to content

Commit

Permalink
Merge pull request #4850 from danpovey/fix_liblbfgs
Browse files Browse the repository at this point in the history
Fix download location in install_liblbfgs.sh
  • Loading branch information
danpovey authored May 2, 2023
2 parents 1918508 + 5ef3962 commit 71f38e6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tools/extras/install_liblbfgs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ if [ ! -f liblbfgs-$VER.tar.gz ]; then
if [ -d "$DOWNLOAD_DIR" ]; then
cp -p "$DOWNLOAD_DIR/liblbfgs-$VER.tar.gz" . || exit 1
else
$WGET https://github.com/downloads/chokkan/liblbfgs/liblbfgs-$VER.tar.gz || exit 1
# only 1.10 supported
$WGET https://danielpovey.com/files/liblbfgs-$VER.tar.gz || exit 1
# $WGET https://github.com/downloads/chokkan/liblbfgs/liblbfgs-$VER.tar.gz || exit 1
fi
fi

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

0 comments on commit 71f38e6

Please sign in to comment.