Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: lxde-base/lxterminal/
Date: Wed, 20 Oct 2021 01:14:35
Message-Id: 1634692224.03820a4c8bea239c7c4b67b9dbbb1b382f154009.sam@gentoo
1 commit: 03820a4c8bea239c7c4b67b9dbbb1b382f154009
2 Author: Jay Faulkner <jay <AT> jvf <DOT> cc>
3 AuthorDate: Fri Oct 15 04:43:50 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 20 01:10:24 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03820a4c
7
8 lxde-base/lxterminal: fix maintainer mode / automake mismatch
9
10 Per the instructions in the QA project wiki page, I removed
11 the aclocal.m4 file from the upstream package during the build
12 phase. That resulted in a successful compilation of the package.
13
14 Closes: https://bugs.gentoo.org/818211
15 Package-Manager: Portage-3.0.28, Repoman-3.0.3
16 Signed-off-by: Jay Faulkner <jay <AT> jvf.cc>
17 Closes: https://github.com/gentoo/gentoo/pull/22582
18 Signed-off-by: Sam James <sam <AT> gentoo.org>
19
20 lxde-base/lxterminal/lxterminal-0.4.0.ebuild | 3 +++
21 1 file changed, 3 insertions(+)
22
23 diff --git a/lxde-base/lxterminal/lxterminal-0.4.0.ebuild b/lxde-base/lxterminal/lxterminal-0.4.0.ebuild
24 index ac2acb53b0e..14c03d4a6cf 100644
25 --- a/lxde-base/lxterminal/lxterminal-0.4.0.ebuild
26 +++ b/lxde-base/lxterminal/lxterminal-0.4.0.ebuild
27 @@ -31,6 +31,9 @@ BDEPEND="
28
29 src_prepare() {
30 xdg_src_prepare
31 + # Avoid maintainer mode, bug #818211
32 + rm aclocal.m4 || die
33 +
34 eautoreconf
35 }