Skip to content

Commit 19f08f1

Browse files
authored
Merge pull request #14606 from cxp484/master
FDS Build: Fix wildcard for Windows mkl lib dir search
2 parents 47574ca + bba0780 commit 19f08f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Build/makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ MKL_DIR_UNIX := $(subst \,/,$(MKLROOT))
7070
MKL_DIR_INTEL := $(MKL_DIR_UNIX)/lib/intel64
7171
MKL_DIR_BASE := $(MKL_DIR_UNIX)/lib
7272
MKL_BLA_LIB := mkl_blacs_intelmpi_lp64
73-
MKL_BLA_PATH_A := $(MKL_DIR_INTEL)/lib$(MKL_BLA_LIB).a
74-
MKL_BLA_PATH_LIB := $(MKL_DIR_INTEL)/$(MKL_BLA_LIB).lib
73+
MKL_BLA_PATH_A := "$(MKL_DIR_INTEL)/lib$(MKL_BLA_LIB).a"
74+
MKL_BLA_PATH_LIB := "$(MKL_DIR_INTEL)/$(MKL_BLA_LIB).lib"
7575
ifneq (,$(wildcard $(MKL_BLA_PATH_A) $(MKL_BLA_PATH_LIB)))
7676
MKLLIBDIR := $(MKL_DIR_INTEL)
7777
else

0 commit comments

Comments
 (0)