From fb08dd9c90a2a7ff77a3f7fc8916bb440401506a Mon Sep 17 00:00:00 2001 From: "Douglas R. Reno" Date: Tue, 11 Apr 2023 20:11:41 -0500 Subject: [PATCH] CMakeLists.txt: fix typo for Haiku detection Closes #10937 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.47.3