From 77c7ee54da1cdf933e805c426047b3d62c13fec9 Mon Sep 17 00:00:00 2001 From: Debian Python Team Date: Mon, 19 Feb 2024 15:53:59 +0100 Subject: [PATCH] cblas_in_blas =================================================================== Gbp-Pq: Name cblas_in_blas.patch --- scipy/meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scipy/meson.build b/scipy/meson.build index 58727b08..e8d97a39 100644 --- a/scipy/meson.build +++ b/scipy/meson.build @@ -166,7 +166,10 @@ if blas_name == 'blas' # In the future, this should be done automatically for: # `dependency('blas', modules: cblas)` # see https://github.com/mesonbuild/meson/pull/10921. - cblas = dependency('cblas') + #cblas = dependency('cblas') + # But in the Debian builds cblas symbols are contained in libblas.so + # so we don't want to depend on a separate cblas. + cblas = [] else cblas = [] endif -- 2.30.2