summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorJim Meyering <meyering@fb.com>2020-01-18 20:52:21 -0800
committerAkim Demaille <akim.demaille@gmail.com>2020-01-19 10:03:01 +0100
commit27e822abfd0b336bf7ebbbb97b46e47752ca4663 (patch)
tree2d992078deb2ca4599fbcb317063a68d8f74a484 /configure.ac
parent21ba4960834ad7eac3e757feb65b9a274e1d45fd (diff)
downloadbison-27e822abfd0b336bf7ebbbb97b46e47752ca4663.tar.gz
test: report.at: avoid tiny new failure
Be robust to newer versions of Autoconf where the package URL defaults to https instead of http. * configure.ac (AC_INIT): Use https. * tests/report.at: Adjust expected output s/http/https/ to match updated URL.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 235e7cc9..3f144cbc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -26,7 +26,9 @@ m4_pattern_allow([^BISON_USE_NLS$])
AC_INIT([GNU Bison],
m4_esyscmd([build-aux/git-version-gen .tarball-version]),
- [bug-bison@gnu.org])
+ [bug-bison@gnu.org],
+ [],
+ [https://www.gnu.org/software/bison/])
AC_SUBST([PACKAGE_COPYRIGHT_YEAR], [2020])
AC_DEFINE_UNQUOTED([PACKAGE_COPYRIGHT_YEAR], [$PACKAGE_COPYRIGHT_YEAR],
[The copyright year for this package])