From 6f1a2f6b71534538641e7ebc1ee676038808fa6d Mon Sep 17 00:00:00 2001 From: thepyper Date: Thu, 9 Aug 2018 09:00:16 +0200 Subject: [PATCH] Fixed build on non-musl systems --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 03e1f9a2..cf9720b3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -43,7 +43,7 @@ if(UNIX) if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux") add_definitions(-DUNIX_LINUX) - if($ENV{USE_MUSL} STREQUAL "YES") + if("$ENV{USE_MUSL}" STREQUAL "YES") add_definitions(-DUNIX_LINUX_MUSL) endif() endif()