From 83e2e124a3aba90923416e616820ce1f2dab70b1 Mon Sep 17 00:00:00 2001 From: Pavel Grunt Date: Fri, 18 Oct 2019 18:04:48 +0200 Subject: [PATCH] OpenCVFindMKL: Fix a typo --- cmake/OpenCVFindMKL.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/OpenCVFindMKL.cmake b/cmake/OpenCVFindMKL.cmake index 5eee3f5daa..19a76ddf57 100644 --- a/cmake/OpenCVFindMKL.cmake +++ b/cmake/OpenCVFindMKL.cmake @@ -133,7 +133,7 @@ message(STATUS "Found MKL ${MKL_VERSION_STR} at: ${MKL_ROOT_DIR}") set(HAVE_MKL ON) set(MKL_ROOT_DIR "${MKL_ROOT_DIR}" CACHE PATH "Path to MKL directory") set(MKL_INCLUDE_DIRS "${MKL_INCLUDE_DIRS}" CACHE PATH "Path to MKL include directory") -set(MKL_LIBRARIES "${MKL_LIBRARIES}" CACHE STRING "MKL libarries") +set(MKL_LIBRARIES "${MKL_LIBRARIES}" CACHE STRING "MKL libraries") if(UNIX AND NOT MKL_LIBRARIES_DONT_HACK) #it's ugly but helps to avoid cyclic lib problem set(MKL_LIBRARIES ${MKL_LIBRARIES} ${MKL_LIBRARIES} ${MKL_LIBRARIES} "-lpthread" "-lm" "-ldl")