2
0
mirror of https://github.com/curl/curl.git synced 2025-04-12 16:20:35 +08:00

CMakeLists.txt: fix typo for Haiku detection

Closes 
This commit is contained in:
Douglas R. Reno 2023-04-11 20:11:41 -05:00 committed by Daniel Stenberg
parent 8e75c4f978
commit fb08dd9c90
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

@ -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()