From a3fd63fd1d5fb0798210ff5f2d994b72ec0eb39a Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Fri, 17 Nov 2023 16:12:41 +0100 Subject: [PATCH] Update source URL in misc/update_config_scripts Note: I'm not going to update our bundled files 'config.guess' and 'config.sub' though. This should only be done if really necessary. --- misc/update_config_scripts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/update_config_scripts b/misc/update_config_scripts index b28977b8a..802a06bbc 100755 --- a/misc/update_config_scripts +++ b/misc/update_config_scripts @@ -3,7 +3,7 @@ # Update the bundled scripts config.guess and config.sub # for the Fast Light Tool Kit (FLTK). # -# Copyright 1998-2021 by Bill Spitzak and others. +# Copyright 1998-2023 by Bill Spitzak and others. # # This library is free software. Distribution and use rights are outlined in # the file "COPYING" which should have been included with this file. If this @@ -43,7 +43,7 @@ for FILE in config.guess config.sub; do echo "Downloading $FILE..." echo "" wget -O $FILE \ - "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=$FILE" + "https://git.savannah.gnu.org/cgit/config.git/plain/$FILE" done echo ""