From: Debian Python Team Date: Mon, 19 Feb 2024 14:53:59 +0000 (+0100) Subject: cblas_in_blas X-Git-Tag: archive/raspbian/1.11.4-6+rpi1^2^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=77c7ee54da1cdf933e805c426047b3d62c13fec9;p=scipy.git cblas_in_blas =================================================================== Gbp-Pq: Name cblas_in_blas.patch --- 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