diff options
author | WANG Xuerui <xen0n@gentoo.org> | 2022-04-26 17:40:10 +0800 |
---|---|---|
committer | WANG Xuerui <xen0n@gentoo.org> | 2022-04-26 17:44:43 +0800 |
commit | 5dcddbb5214cd29e6217edb4002be36df4d60c66 (patch) | |
tree | b3df48848c7226e07e2e51ab4ea1f8abed66e26e /sys-devel | |
parent | dev-util/diffuse: bump to 0.7.5 (diff) | |
download | gentoo-5dcddbb5214cd29e6217edb4002be36df4d60c66.tar.gz gentoo-5dcddbb5214cd29e6217edb4002be36df4d60c66.tar.bz2 gentoo-5dcddbb5214cd29e6217edb4002be36df4d60c66.zip |
sys-devel/m4: fix incomplete deactivation of maintainer mode
Commit 4abfea67ec7 ("sys-devel/m4: avoid invoking autoconf") did an
incomplete job of deactivating the refresh of various files after
patching the m4 and configure part of sources; turns out dependency on
makeinfo should be avoided as well.
Tested with sys-apps/texinfo unmerged.
Fixes: 43dd58338de ("sys-devel/m4: fix build on loong")
Closes: https://bugs.gentoo.org/840984
Signed-off-by: WANG Xuerui <xen0n@gentoo.org>
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/m4/m4-1.4.19.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-devel/m4/m4-1.4.19.ebuild b/sys-devel/m4/m4-1.4.19.ebuild index e3ceb0429850..2830a3894678 100644 --- a/sys-devel/m4/m4-1.4.19.ebuild +++ b/sys-devel/m4/m4-1.4.19.ebuild @@ -57,7 +57,7 @@ src_prepare() { # touch generated files after patching m4, to avoid activating maintainer # mode # remove when loong-fix-build.patch is no longer necessary - touch ./aclocal.m4 ./lib/config.hin ./configure || die + touch ./aclocal.m4 ./lib/config.hin ./configure ./doc/stamp-vti || die find . -name Makefile.in -exec touch {} + || die } |