Skip to content

Commit bfe7aa5

Browse files
reibax-marcusainguraXmarquiegui
authored andcommitted
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.
1 parent 75c6ab4 commit bfe7aa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ install : lib.grd
7171
@cat common_interface.h >> "$(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/f77blas.h"
7272
@echo \#endif >> "$(DESTDIR)$(OPENBLAS_INCLUDE_DIR)/f77blas.h"
7373

74-
ifndef NO_CBLAS
74+
ifneq ($(NO_CBLAS),1)
7575
@echo Generating cblas.h in $(DESTDIR)$(OPENBLAS_INCLUDE_DIR)
7676
@cp cblas.h cblas.tmp
7777
ifdef SYMBOLPREFIX

0 commit comments

Comments
 (0)