Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/fcron/files/
Date: Wed, 01 Mar 2023 16:44:43
Message-Id: 1677689075.589c0b411c93c840fc7a5d220ce76e3547fed6d8.juippis@gentoo
1 commit: 589c0b411c93c840fc7a5d220ce76e3547fed6d8
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Wed Mar 1 16:21:16 2023 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Wed Mar 1 16:44:35 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=589c0b41
7
8 sys-process/fcron: remove unused patch
9
10 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
11 Closes: https://github.com/gentoo/gentoo/pull/29872
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 ...3.2.1-configure-fix-audit-parameter-check.patch | 30 ----------------------
15 1 file changed, 30 deletions(-)
16
17 diff --git a/sys-process/fcron/files/fcron-3.2.1-configure-fix-audit-parameter-check.patch b/sys-process/fcron/files/fcron-3.2.1-configure-fix-audit-parameter-check.patch
18 deleted file mode 100644
19 index b4166ff9d7e3..000000000000
20 --- a/sys-process/fcron/files/fcron-3.2.1-configure-fix-audit-parameter-check.patch
21 +++ /dev/null
22 @@ -1,30 +0,0 @@
23 -From cc7a684862fee31c442c49d6a537d86979c23220 Mon Sep 17 00:00:00 2001
24 -From: Thomas Deutschmann <whissi@g.o>
25 -Date: Thu, 17 Nov 2016 17:19:35 +0100
26 -Subject: [PATCH] configure: Fix --with-audit parameter check
27 -
28 -Due to a missing "$" the variable "$useaudit" was never checked for
29 -0 value with the result that you cannot disable building against
30 -libaudit.
31 -
32 -Gentoo-Bug: https://bugs.gentoo.org/540446
33 ----
34 - configure.in | 2 +-
35 - 1 file changed, 1 insertion(+), 1 deletion(-)
36 -
37 -diff --git a/configure.in b/configure.in
38 -index 7e7634f..708d1dd 100644
39 ---- a/configure.in
40 -+++ b/configure.in
41 -@@ -822,7 +822,7 @@ AC_ARG_WITH(audit,
42 - ;;
43 - esac ]
44 - )
45 --if test useaudit = "0"; then
46 -+if test "$useaudit" = 0; then
47 - AC_MSG_RESULT(no)
48 - elif test "$useaudit" = "1" && test "$auditavail" != 1; then
49 - useaudit=0
50 ---
51 -2.10.2
52 -