From 3a6b79c50f059941358eaae2403ecca5f70c6d54 Mon Sep 17 00:00:00 2001 From: Xabier Marquiegui Date: Tue, 12 Aug 2025 14:40:15 +0200 Subject: [PATCH] fix: broken cblas installation when using makefile based builds Fix cblas.h missing from target directory if NO_CBLAS is defined but has a value that indicates you do want cblas built and installed. --- Makefile.install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.install b/Makefile.install index c8b427978..3c8d47642 100644 --- a/Makefile.install +++ b/Makefile.install @@ -71,7 +71,7 @@ install : lib.grd @cat common_interface.h >> "$(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/f77blas.h" @echo \#endif >> "$(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/f77blas.h" -ifndef NO_CBLAS +ifneq ($(NO_CBLAS),1) @echo Generating cblas.h in $(DESTDIR)$(OPENBLAS_INCLUDE_DIR) @cp cblas.h cblas.tmp ifdef SYMBOLPREFIX