summaryrefslogtreecommitdiff
path: root/build-aux/announce-gen
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2017-09-13 00:48:18 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2017-09-13 00:48:57 -0700
commitca35d468121a7ec60162155f9c3395068ca323d1 (patch)
tree21dda8c53d99e346571693406a75bdb24e67b7d1 /build-aux/announce-gen
parent9dd86e23c6c1ab02723efdeb6704920724d6abfc (diff)
downloadgnulib-ca35d468121a7ec60162155f9c3395068ca323d1.tar.gz
all: prefer https: URLs
Diffstat (limited to 'build-aux/announce-gen')
-rwxr-xr-xbuild-aux/announce-gen10
1 files changed, 5 insertions, 5 deletions
diff --git a/build-aux/announce-gen b/build-aux/announce-gen
index e789b13a80..269f786330 100755
--- a/build-aux/announce-gen
+++ b/build-aux/announce-gen
@@ -3,7 +3,7 @@ eval '(exit $?0)' && eval 'exec perl -wS "$0" "$@"'
if 0;
# Generate a release announcement message.
-my $VERSION = '2016-01-12 23:09'; # UTC
+my $VERSION = '2017-09-13 06:45'; # UTC
# The definition above must lie within the first 8 lines in order
# for the Emacs time-stamp write hook (at end) to update it.
# If you change this file with Emacs, please let the write hook
@@ -22,7 +22,7 @@ my $VERSION = '2016-01-12 23:09'; # UTC
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
# Written by Jim Meyering
@@ -492,17 +492,17 @@ EOF
if ($url_dir_list[0] =~ "gnu\.org")
{
print "Use a mirror for higher download bandwidth:\n";
- if (@tarballs == 1 && $url_dir_list[0] =~ m!http://ftp\.gnu\.org/gnu/!)
+ if (@tarballs == 1 && $url_dir_list[0] =~ m!https://ftp\.gnu\.org/gnu/!)
{
(my $m = "$url_dir_list[0]/$tarballs[0]")
- =~ s!http://ftp\.gnu\.org/gnu/!http://ftpmirror\.gnu\.org/!;
+ =~ s!https://ftp\.gnu\.org/gnu/!https://ftpmirror\.gnu\.org/!;
print " $m\n"
. " $m.sig\n\n";
}
else
{
- print " http://www.gnu.org/order/ftp.html\n\n";
+ print " https://www.gnu.org/order/ftp.html\n\n";
}
}