Gentoo Archives: gentoo-commits

From: WANG Xuerui <xen0n@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/m4/
Date: Tue, 26 Apr 2022 09:47:30
Message-Id: 1650966283.5dcddbb5214cd29e6217edb4002be36df4d60c66.xen0n@gentoo
1 commit: 5dcddbb5214cd29e6217edb4002be36df4d60c66
2 Author: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 09:40:10 2022 +0000
4 Commit: WANG Xuerui <xen0n <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 09:44:43 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dcddbb5
7
8 sys-devel/m4: fix incomplete deactivation of maintainer mode
9
10 Commit 4abfea67ec7 ("sys-devel/m4: avoid invoking autoconf") did an
11 incomplete job of deactivating the refresh of various files after
12 patching the m4 and configure part of sources; turns out dependency on
13 makeinfo should be avoided as well.
14
15 Tested with sys-apps/texinfo unmerged.
16
17 Fixes: 43dd58338de ("sys-devel/m4: fix build on loong")
18 Closes: https://bugs.gentoo.org/840984
19 Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>
20
21 sys-devel/m4/m4-1.4.19.ebuild | 2 +-
22 1 file changed, 1 insertion(+), 1 deletion(-)
23
24 diff --git a/sys-devel/m4/m4-1.4.19.ebuild b/sys-devel/m4/m4-1.4.19.ebuild
25 index e3ceb0429850..2830a3894678 100644
26 --- a/sys-devel/m4/m4-1.4.19.ebuild
27 +++ b/sys-devel/m4/m4-1.4.19.ebuild
28 @@ -57,7 +57,7 @@ src_prepare() {
29 # touch generated files after patching m4, to avoid activating maintainer
30 # mode
31 # remove when loong-fix-build.patch is no longer necessary
32 - touch ./aclocal.m4 ./lib/config.hin ./configure || die
33 + touch ./aclocal.m4 ./lib/config.hin ./configure ./doc/stamp-vti || die
34 find . -name Makefile.in -exec touch {} + || die
35 }