From 8f5a1f3f22dc8bc4e4c01ed95f3a9ea58faa063e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Wed, 2 Feb 2022 10:50:45 +0100 Subject: [PATCH] Change the bug reporting address from email to gitlab URI In autoconf, the AC_INIT() accepts bugreport address for reporting issues (f.e. when the test suite fails). Instead of providing generic emails address, change this to the address where to report with the default Bug template applied. (cherry picked from commit bb60622250a69e34f0041da821cbaabfc1814e95) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index cb3f88d36d..7068767e83 100644 --- a/configure.ac +++ b/configure.ac @@ -25,7 +25,7 @@ m4_define([bind_PKG_VERSION], [[bind_VERSION_MAJOR.bind_VERSION_MINOR.bind_VERSI # # Autoconf initialization # -AC_INIT([BIND], bind_PKG_VERSION, [info@isc.org], [], [https://www.isc.org/downloads/]) +AC_INIT([BIND], bind_PKG_VERSION, [https://gitlab.isc.org/isc-projects/bind9/-/issues/new?issuable_template=Bug], [], [https://www.isc.org/downloads/]) AC_PREREQ([2.69]) AC_DEFINE([PACKAGE_VERSION_MAJOR], ["][bind_VERSION_MAJOR]["], [BIND 9 Major part of the version])