dev-libs/c-blosc2: fix passing -j1 in src_test

With the previous method of `MAKEOPTS=-j1 cmake_src_test`, non-j1 may
be passed if NINJAOPTS is set by the user because that takes precedence.

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-07-18 19:22:51 +01:00
parent 52162e0e86
commit 90e83189f9
2 changed files with 2 additions and 2 deletions

View File

@@ -59,5 +59,5 @@ src_configure() {
src_test() {
# Tests fail in parallel, https://github.com/Blosc/c-blosc2/issues/432
MAKEOPTS=-j1 cmake_src_test
cmake_src_test -j1
}

View File

@@ -59,5 +59,5 @@ src_configure() {
src_test() {
# Tests fail in parallel, https://github.com/Blosc/c-blosc2/issues/432
MAKEOPTS=-j1 cmake_src_test
cmake_src_test -j1
}