diff options
| -rw-r--r-- | openmp/cmake/OpenMPTesting.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openmp/cmake/OpenMPTesting.cmake b/openmp/cmake/OpenMPTesting.cmake index 396460a80d5..52e68aa150f 100644 --- a/openmp/cmake/OpenMPTesting.cmake +++ b/openmp/cmake/OpenMPTesting.cmake @@ -123,7 +123,7 @@ else() # Unfortunately the top-level cmake/config-ix.cmake file mangles CMake's # CMAKE_THREAD_LIBS_INIT variable from the FindThreads package, so work # around that, until it is fixed there. - if(${CMAKE_THREAD_LIBS_INIT} STREQUAL "-lpthread") + if("${CMAKE_THREAD_LIBS_INIT}" STREQUAL "-lpthread") set(OPENMP_TEST_COMPILER_THREAD_FLAGS "-pthread") else() set(OPENMP_TEST_COMPILER_THREAD_FLAGS "${CMAKE_THREAD_LIBS_INIT}") |

