From 5a3c419e6a60207936f48e74a4d119886874b2c0 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sun, 17 Dec 2023 03:19:30 +0100 Subject: [PATCH] CMake|Autotools: Fix PACKAGE_BUGREPORT variable to something working --- expat/CMakeLists.txt | 2 +- expat/configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/expat/CMakeLists.txt b/expat/CMakeLists.txt index 210fa82c..d9219e8d 100644 --- a/expat/CMakeLists.txt +++ b/expat/CMakeLists.txt @@ -46,7 +46,7 @@ set(CMAKE_C_STANDARD 99) set(CMAKE_C_STANDARD_REQUIRED ON) set(CMAKE_C_EXTENSIONS OFF) # i.e. -std=c99 rather than default -std=gnu99 -set(PACKAGE_BUGREPORT "expat-bugs@libexpat.org") +set(PACKAGE_BUGREPORT "https://github.com/libexpat/libexpat/issues") set(PACKAGE_NAME "expat") set(PACKAGE_VERSION "${PROJECT_VERSION}") set(PACKAGE_STRING "${PACKAGE_NAME} ${PACKAGE_VERSION}") diff --git a/expat/configure.ac b/expat/configure.ac index fec4ecd0..55344fa9 100644 --- a/expat/configure.ac +++ b/expat/configure.ac @@ -60,7 +60,7 @@ m4_define([expat_version], m4_ifdef([__gnu__], [esyscmd(conftools/get-version.sh lib/expat.h)], [2.2.x])) -AC_INIT([expat], expat_version, [expat-bugs@libexpat.org]) +AC_INIT([expat], expat_version, [https://github.com/libexpat/libexpat/issues]) m4_undefine([expat_version]) AC_CONFIG_SRCDIR([Makefile.in])