From a23a582695c7f821bd267d6e06fee9432b9dc75d Mon Sep 17 00:00:00 2001 From: Ivan Maidanski Date: Fri, 5 May 2017 00:49:53 +0300 Subject: [PATCH] Fix OSF1 host pattern in CMakeLists.txt * CMakeLists.txt [CMAKE_USE_PTHREADS_INIT && osf]: Replace ".*-.*-osf*" pattern ".*-.*-osf.*" (a missing "." before "*" is added). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 70f1502b..c8624372 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -162,7 +162,7 @@ IF(CMAKE_USE_PTHREADS_INIT) #TODO #darwin_threads=true ENDIF() - IF ( HOST MATCHES .*-.*-osf*) + IF ( HOST MATCHES .*-.*-osf.*) ADD_DEFINITIONS("-DGC_OSF1_THREADS") IF(enable_parallel_mark) ADD_DEFINITIONS("-DTHREAD_LOCAL_ALLOC") -- 2.40.0