From 374218a07a4bbe9826da8b0d9edf2e6c51042224 Mon Sep 17 00:00:00 2001 From: TANGUY Arnaud Date: Tue, 29 Jul 2014 14:08:42 +0200 Subject: [PATCH] Fix choice MKL directory from Makefile.config --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 391d3c08e5c..8e8ebedbc57 100644 --- a/Makefile +++ b/Makefile @@ -247,7 +247,7 @@ ifeq ($(BLAS), mkl) # MKL LIBRARIES += mkl_rt COMMON_FLAGS += -DUSE_MKL - MKL_DIR = /opt/intel/mkl + MKL_DIR ?= /opt/intel/mkl BLAS_INCLUDE ?= $(MKL_DIR)/include BLAS_LIB ?= $(MKL_DIR)/lib $(MKL_DIR)/lib/intel64 else ifeq ($(BLAS), open)