From: Douglas R. Reno Date: Wed, 12 Apr 2023 01:11:41 +0000 (-0500) Subject: CMakeLists.txt: fix typo for Haiku detection X-Git-Tag: curl-8_1_0~168 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb08dd9c90a2a7ff77a3f7fc8916bb440401506a;p=thirdparty%2Fcurl.git CMakeLists.txt: fix typo for Haiku detection Closes #10937 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index a14bec5669..542957455f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -323,7 +323,7 @@ if(${CMAKE_SYSTEM_NAME} MATCHES AIX) endif() # If we are on Haiku, make sure that the network library is brought in. -if(${CMAKE_SYSTE_NAME} MATCHES Haiku) +if(${CMAKE_SYSTEM_NAME} MATCHES Haiku) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -lnetwork") endif()