mail-filter/scmail: fix parallel build

Closes: https://bugs.gentoo.org/882513
Closes: https://bugs.gentoo.org/884759
Signed-off-by: Akinori Hattori <hattya@gentoo.org>
This commit is contained in:
Akinori Hattori
2024-05-12 15:17:26 +09:00
parent 29a99c7401
commit 79a7379439
2 changed files with 21 additions and 5 deletions

View File

@@ -0,0 +1,19 @@
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@
all: check-gauche $(TARGET) update-doc
-update-doc:
+update-doc: dot.scmail/deliver-rules.sample
cd doc && make
check-gauche:
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -41,3 +41,5 @@
@rm -f $(TARGET)
@rm -rf Mail Maildir test.*
+.NOTPARALLEL:
+

View File

@@ -1,4 +1,4 @@
# Copyright 1999-2022 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
@@ -21,6 +21,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-doc-encoding.patch
"${FILESDIR}"/${PN}-gauche-0.9.patch
"${FILESDIR}"/${PN}-gauche-0.9.10.patch
"${FILESDIR}"/${PN}-parallel-make.patch
"${FILESDIR}"/${PN}-undefined-reference.patch
)
HTML_DOCS=( doc/{${PN},scbayes}{,-ja}.html )
@@ -41,7 +42,3 @@ src_install() {
install
einstalldocs
}
src_test() {
emake -j1 -s check
}