summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2017-09-19 01:13:23 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2017-09-19 01:22:54 -0700
commitbe87d61299f52e366bcb65fd176ccf325b0f77e0 (patch)
treec5e289ea68824ba407d5928e0e6e65d8bab51430 /scripts
parent44ccd1c4657703b15971b0670b9716a25244a358 (diff)
downloadcoreutils-be87d61299f52e366bcb65fd176ccf325b0f77e0.tar.gz
all: prefer HTTPS in URLs
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/autotools-install14
-rwxr-xr-xscripts/git-hooks/commit-msg4
2 files changed, 9 insertions, 9 deletions
diff --git a/scripts/autotools-install b/scripts/autotools-install
index 7e37cebf5..04ddec891 100755
--- a/scripts/autotools-install
+++ b/scripts/autotools-install
@@ -1,5 +1,5 @@
#!/bin/sh
-VERSION='2015-10-06 12:49' # UTC
+VERSION='2017-09-19 07:31' # UTC
# Building coreutils from a git-cloned directory may require versions of
# tools like autoconf, automake, gettext, etc. that are newer than the ones
@@ -26,12 +26,12 @@ prog_name=`basename $0`
die () { echo "$prog_name: $*" >&2; exit 1; }
tarballs='
- http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz
- http://ftp.gnu.org/gnu/m4/m4-1.4.17.tar.gz
- http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
- http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz
- http://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz
- http://ftp.gnu.org/gnu/gettext/gettext-0.19.6.tar.gz
+ https://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz
+ https://ftp.gnu.org/gnu/m4/m4-1.4.17.tar.gz
+ https://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
+ https://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz
+ https://ftp.gnu.org/gnu/libtool/libtool-2.4.6.tar.gz
+ https://ftp.gnu.org/gnu/gettext/gettext-0.19.6.tar.gz
'
usage() {
diff --git a/scripts/git-hooks/commit-msg b/scripts/git-hooks/commit-msg
index 6aedf807f..e6b38bb21 100755
--- a/scripts/git-hooks/commit-msg
+++ b/scripts/git-hooks/commit-msg
@@ -125,10 +125,10 @@ sub check_msg($$)
my $buf = join ("\n", @line) . "\n";
$buf =~ m!https?://bugzilla\.redhat\.com/show_bug\.cgi\?id=(\d+)!s
- and return "use shorter http://bugzilla.redhat.com/$1";
+ and return "use shorter https://bugzilla.redhat.com/$1";
$buf =~ m!https?://debbugs\.gnu\.org/(?:cgi/bugreport\.cgi\?bug=)?(\d+)!s
- and return "use shorter http://bugs.gnu.org/$1";
+ and return "use shorter https://bugs.gnu.org/$1";
$buf =~ /^ *Signed-off-by:/mi
and return q(do not use "Signed-off-by:");