From: Pádraig Brady Date: Mon, 6 Nov 2017 00:28:12 +0000 (-0800) Subject: maint: ensure https:// URLs are used in --help and man pages X-Git-Tag: v8.29~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ada1caedd5d4df93a8b743aa1e9a4fbe205ad3a7;p=thirdparty%2Fcoreutils.git 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. --- 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])