commit: 2f712ff820d12f1dcc045fca081b66bb9b503f3c Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Nov 30 19:05:24 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Nov 30 19:05:24 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f712ff8
sci-libs/openblas: fix tests w/o index64 Bug: https://bugs.gentoo.org/966749 Signed-off-by: Sam James <sam <AT> gentoo.org> sci-libs/openblas/openblas-0.3.30-r3.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sci-libs/openblas/openblas-0.3.30-r3.ebuild b/sci-libs/openblas/openblas-0.3.30-r3.ebuild index 2b621003bec0..d0f1575c1592 100644 --- a/sci-libs/openblas/openblas-0.3.30-r3.ebuild +++ b/sci-libs/openblas/openblas-0.3.30-r3.ebuild @@ -154,7 +154,10 @@ src_compile() { src_test() { emake tests - emake64 tests + + if use index64; then + emake64 tests + fi } src_install() {
