summaryrefslogtreecommitdiff
path: root/Modules/FindBLAS.cmake
diff options
context:
space:
mode:
authorIgor S. Gerasimov <i.s.ger@ya.ru>2021-07-27 16:26:27 +0300
committerBrad King <brad.king@kitware.com>2021-07-27 10:53:25 -0400
commit92edd7376bf18f3cf467cfd28a88b7372b5e0f50 (patch)
tree9bf96b2f283d754cb8297e6c46ef2ff19d28d751 /Modules/FindBLAS.cmake
parentc15bb6f8b8c2eac691138e35d96570d537cc6d69 (diff)
downloadcmake-92edd7376bf18f3cf467cfd28a88b7372b5e0f50.tar.gz
FindBLAS: Fix regression in finding EML_mt after recent refactoring
Fix a variable referenced missed by commit 76487b04b1 (Find{BLAS,LAPACK}: clean variables, 2021-07-13).
Diffstat (limited to 'Modules/FindBLAS.cmake')
-rw-r--r--Modules/FindBLAS.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindBLAS.cmake b/Modules/FindBLAS.cmake
index 0898240edf..29150c1e52 100644
--- a/Modules/FindBLAS.cmake
+++ b/Modules/FindBLAS.cmake
@@ -1094,7 +1094,7 @@ if(BLA_VENDOR MATCHES "EML" OR BLA_VENDOR STREQUAL "All")
# Check for OpenMP support, VIA BLA_VENDOR of eml_mt
if(BLA_VENDOR MATCHES "_mt")
- set(_blas_eml_lib "${BLAS_EML_LIB}_mt")
+ set(_blas_eml_lib "${_blas_eml_lib}_mt")
endif()
if(NOT BLAS_LIBRARIES)