From 59c91227b46b60b7f965816544b25fe0a3cc8bbe Mon Sep 17 00:00:00 2001 From: Alexander Stefanov Date: Fri, 26 Jul 2024 18:59:00 +0300 Subject: [PATCH] use proper STREQUAL instead of EQUAL to compare strings --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5f3a64a8..36f48769 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -492,7 +492,7 @@ execute_process( if(CACHELINE_SIZE STREQUAL "" OR CACHELINE_SIZE EQUAL 0 OR CACHELINE_SIZE EQUAL -1 - OR CACHELINE_SIZE EQUAL "undefined") + OR CACHELINE_SIZE STREQUAL "undefined") set(ZMQ_CACHELINE_SIZE 64) else() set(ZMQ_CACHELINE_SIZE ${CACHELINE_SIZE})