Skip to content

Commit 56170db

Browse files
committed
use github to download guess instead of gnu.org
gnu.org seems down rn (dns does no longer resolve), and doesn't have good uptime history
1 parent 79a2de7 commit 56170db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build_helpers/install_ta-lib.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ if [ -n "$2" ] || [ ! -f "${INSTALL_LOC}/lib/libta_lib.a" ]; then
88
tar zxvf ta-lib-0.4.0-src.tar.gz
99
cd ta-lib \
1010
&& sed -i.bak "s|0.00000001|0.000000000000000001 |g" src/ta_func/ta_utility.h \
11-
&& curl 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD' -o config.guess \
12-
&& curl 'http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' -o config.sub \
11+
&& curl 'https://raw.githubusercontent.com/gcc-mirror/gcc/master/config.guess' -o config.guess \
12+
&& curl 'https://raw.githubusercontent.com/gcc-mirror/gcc/master/config.sub' -o config.sub \
1313
&& ./configure --prefix=${INSTALL_LOC}/ \
1414
&& make
1515
if [ $? -ne 0 ]; then

0 commit comments

Comments
 (0)