Skip to content

Commit 59c9122

Browse files
Alexander Stefanovbluca
Alexander Stefanov
authored andcommitted
use proper STREQUAL instead of EQUAL to compare strings
1 parent ee29bcd commit 59c9122

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ execute_process(
492492
if(CACHELINE_SIZE STREQUAL ""
493493
OR CACHELINE_SIZE EQUAL 0
494494
OR CACHELINE_SIZE EQUAL -1
495-
OR CACHELINE_SIZE EQUAL "undefined")
495+
OR CACHELINE_SIZE STREQUAL "undefined")
496496
set(ZMQ_CACHELINE_SIZE 64)
497497
else()
498498
set(ZMQ_CACHELINE_SIZE ${CACHELINE_SIZE})

0 commit comments

Comments
 (0)