]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
CMakeLists.txt: fix typo for Haiku detection
authorDouglas R. Reno <renodr@linuxfromscratch.org>
Wed, 12 Apr 2023 01:11:41 +0000 (20:11 -0500)
committerDaniel Stenberg <daniel@haxx.se>
Wed, 12 Apr 2023 06:50:18 +0000 (08:50 +0200)
Closes #10937

CMakeLists.txt

index a14bec56691d3bc51f17a9c9d3c1876b02127d6a..542957455fa1658a334e2b49406cdbbba10b6af8 100644 (file)
@@ -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()