From 8eb721f6a1bfc358e2ad7763921756af866ebb91 Mon Sep 17 00:00:00 2001 From: ddelange <14880945+ddelange@users.noreply.github.com> Date: Tue, 18 Apr 2023 11:19:31 +0200 Subject: [PATCH] Fix typo --- m4/ax_cblas.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/ax_cblas.m4 b/m4/ax_cblas.m4 index 4acda990..0e0d68d3 100644 --- a/m4/ax_cblas.m4 +++ b/m4/ax_cblas.m4 @@ -159,7 +159,7 @@ fi # Generic BLAS library? (for instance OpenBLAS) if test $ax_cblas_ok = no; then - AC_CHECK_LIB(cblas, cblas_dgemm, [ax_cblas_ok=yes; CBLAS_LIBS="-lblas"]) + AC_CHECK_LIB(blas, cblas_dgemm, [ax_cblas_ok=yes; CBLAS_LIBS="-lblas"]) fi AC_SUBST(CBLAS_LIBS)