From ada1caedd5d4df93a8b743aa1e9a4fbe205ad3a7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?=
Date: Sun, 5 Nov 2017 16:28:12 -0800 Subject: [PATCH] maint: ensure https:// URLs are used in --help and man pages * configure.ac(AC_INIT): Specify the URL explicitly, so we're not dependent on unreleased autoconf. --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index c4d576993b..a007613ee2 100644 --- a/configure.ac +++ b/configure.ac @@ -23,9 +23,12 @@ AC_PREREQ([2.69]) # Make inter-release version strings look like, e.g., v6.9-219-g58ddd, which # indicates that it is built from the 219th delta (in _some_ repository) # following the v6.9 tag, and that 58ddd is a prefix of the commit SHA1. +# The explicit URL can be removed when autoconf > 2.69 is released. AC_INIT([GNU coreutils], m4_esyscmd([build-aux/git-version-gen .tarball-version]), - [bug-coreutils@gnu.org]) + [bug-coreutils@gnu.org], + [coreutils], + [https://www.gnu.org/software/coreutils/]) AC_CONFIG_SRCDIR([src/ls.c]) -- 2.47.2