]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: ensure https:// URLs are used in --help and man pages
authorPádraig Brady <P@draigBrady.com>
Mon, 6 Nov 2017 00:28:12 +0000 (16:28 -0800)
committerPádraig Brady <P@draigBrady.com>
Mon, 6 Nov 2017 00:36:58 +0000 (16:36 -0800)
* configure.ac(AC_INIT): Specify the URL explicitly, so we're
not dependent on unreleased autoconf.

configure.ac

index c4d576993b012d3ff14bd0b0e8454027ca40127d..a007613ee2c0c48e85a11bb777b0325aad366d85 100644 (file)
@@ -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])