cblas_in_blas
authorDebian Python Team <team+python@tracker.debian.org>
Mon, 19 Feb 2024 14:53:59 +0000 (15:53 +0100)
committerDrew Parsons <dparsons@debian.org>
Mon, 19 Feb 2024 14:53:59 +0000 (15:53 +0100)
===================================================================

Gbp-Pq: Name cblas_in_blas.patch

scipy/meson.build

index 58727b0879b4347c6780f9ef73e50541785b0c81..e8d97a3945ea3b676c87e655081372c0a73594d9 100644 (file)
@@ -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