commit: f14bfd3c7c6f5e8354a1090c7ffb622529049602 Author: Brett A C Sheffield <bacs <AT> librecast <DOT> net> AuthorDate: Fri Feb 27 12:05:58 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Feb 28 12:26:45 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f14bfd3c
app-text/groonga: fix build with USE=doc Disable parallel build for USE=doc, as this always fails. Closes: https://bugs.gentoo.org/904135 Signed-off-by: Brett A C Sheffield <bacs <AT> librecast.net> Part-of: https://codeberg.org/gentoo/gentoo/pulls/162 Merges: https://codeberg.org/gentoo/gentoo/pulls/162 Signed-off-by: Sam James <sam <AT> gentoo.org> app-text/groonga/groonga-16.0.0.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-text/groonga/groonga-16.0.0.ebuild b/app-text/groonga/groonga-16.0.0.ebuild index 7dff2762f370..d5468bb799ce 100644 --- a/app-text/groonga/groonga-16.0.0.ebuild +++ b/app-text/groonga/groonga-16.0.0.ebuild @@ -90,6 +90,10 @@ src_configure() { econf "${econfopts[@]}" } +src_compile() { + use doc && MAKEOPTS+=" -j1" # docs fail with parallel build. Bug: 904135 +} + src_install() { default
