Skip to content

Commit

Permalink
use proper STREQUAL instead of EQUAL to compare strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Stefanov authored and bluca committed Jul 27, 2024
1 parent ee29bcd commit 59c9122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down

0 comments on commit 59c9122

Please sign in to comment.