diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-11-03 07:48:23 +0100 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-11-03 07:49:01 +0100 |
commit | acfd69b4dd2513353677f336241058502ef3e76a (patch) | |
tree | 9f869efe346489b6b1f063ee0e1c24fef49a7943 | |
parent | sys-process/cronie: Removed old (diff) | |
download | gentoo-acfd69b4dd2513353677f336241058502ef3e76a.tar.gz gentoo-acfd69b4dd2513353677f336241058502ef3e76a.tar.bz2 gentoo-acfd69b4dd2513353677f336241058502ef3e76a.zip |
sys-process/cronie: Fixed build with >=sys-devel/autoconf-2.70_beta1
Thanks-to: Sergei Trofimovich <slyfox@gentoo.org>
Closes: https://bugs.gentoo.org/750728
Package-Manager: Portage-3.0.9, Repoman-3.0.2
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
-rw-r--r-- | sys-process/cronie/cronie-1.5.5.ebuild | 1 | ||||
-rw-r--r-- | sys-process/cronie/files/cronie-1.5.5-autoconf270.patch | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/sys-process/cronie/cronie-1.5.5.ebuild b/sys-process/cronie/cronie-1.5.5.ebuild index 50c1b98619e1..c032a0aa2921 100644 --- a/sys-process/cronie/cronie-1.5.5.ebuild +++ b/sys-process/cronie/cronie-1.5.5.ebuild @@ -33,6 +33,7 @@ S="${WORKDIR}/${PN}-${P}" PATCHES=( "${FILESDIR}/${PN}-1.5.3-systemd.patch" + "${FILESDIR}/${P}-autoconf270.patch" #750728 ) pkg_setup() { diff --git a/sys-process/cronie/files/cronie-1.5.5-autoconf270.patch b/sys-process/cronie/files/cronie-1.5.5-autoconf270.patch new file mode 100644 index 000000000000..d92761d6d4db --- /dev/null +++ b/sys-process/cronie/files/cronie-1.5.5-autoconf270.patch @@ -0,0 +1,20 @@ +From 8191b84648efc4dd583fbbfc4350a9cc9bfd58fb Mon Sep 17 00:00:00 2001 +From: Tomas Mraz <tmraz@fedoraproject.org> +Date: Mon, 2 Nov 2020 11:05:26 +0100 +Subject: [PATCH] configure.ac: Drop the bug report e-mail from AC_INIT() + +Fixes #70 +--- + configure.ac | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/configure.ac b/configure.ac +index 34ff51e..5b746ff 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -1,4 +1,4 @@ +-AC_INIT([cronie],[1.5.5],[mmaslano@redhat.com,tmraz@fedoraproject.org]) ++AC_INIT([cronie],[1.5.5]) + AC_CONFIG_HEADER([config.h]) + AC_PREREQ(2.60) + |