summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChocobo1 <Chocobo1@users.noreply.github.com>2020-12-26 02:34:48 +0800
committerChocobo1 <Chocobo1@users.noreply.github.com>2020-12-26 23:54:00 +0800
commit66eb5c7cd07fec0647517f418e5fc81c4e26d402 (patch)
tree206d26838d650fea1eb2660b1e6f87a9484be2c1
parent97049062b9d1efa7b00d7a13bcf97365b57c937b (diff)
downloadlibtiff-git-66eb5c7cd07fec0647517f418e5fc81c4e26d402.tar.gz
Fix wrong URL for fetching config.guess and config.sub
-rwxr-xr-xautogen.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 08cf3c93..9ef71b53 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -11,7 +11,7 @@ for file in config.guess config.sub
do
echo "$0: getting $file..."
wget -q --timeout=5 -O config/$file.tmp \
- "https://git.savannah.gnu.org/gitweb/?p=gnulib.git;a=blob_plain;f=config/${file};hb=HEAD" \
+ "https://git.savannah.gnu.org/cgit/config.git/plain/${file}" \
&& mv config/$file.tmp config/$file \
&& chmod a+x config/$file
retval=$?