commit: 50c1742c209ff94330d2b5642eceb4147352803c Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue May 23 13:22:51 2023 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue May 23 13:25:04 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50c1742c
dev-db/mongodb: allow MAKEOPTS -jN > nproc Closes: https://bugs.gentoo.org/906897 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-db/mongodb/mongodb-5.0.16-r1.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-db/mongodb/mongodb-5.0.16-r1.ebuild b/dev-db/mongodb/mongodb-5.0.16-r1.ebuild index 763a51752883..a0fc28ebe45c 100644 --- a/dev-db/mongodb/mongodb-5.0.16-r1.ebuild +++ b/dev-db/mongodb/mongodb-5.0.16-r1.ebuild @@ -88,7 +88,7 @@ pkg_pretend() { if use amd64 && ! use cpu_flags_x86_avx; then ewarn "MongoDB 5.0 requires use of the AVX instruction set." ewarn "This ebuild will use --experimental-optimization=-sandybridge which" - ewarn "will result in an experimental build of MongoDB as per upstream." + ewarn "will result in an experimental build of MongoDB as per upstream." ewarn "https://docs.mongodb.com/v5.0/administration/production-notes/" fi @@ -123,6 +123,7 @@ src_configure() { CXX="$(tc-getCXX)" --disable-warnings-as-errors + --force-jobs --jobs="$(makeopts_jobs)" --use-system-boost --use-system-pcre
