Browse Source

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.
pull/5421/head
Xabier Marquiegui 1 month ago
parent
commit
3a6b79c50f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile.install

+ 1
- 1
Makefile.install View File

@@ -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


Loading…
Cancel
Save