@@ -2,9 +2,9 @@ cmake_minimum_required(VERSION 3.11)
22project (curl_fuzzer_deps)
33
44if (NOT "$ENV{MAKE} " STREQUAL "" )
5- set (MAKE "$ENV{MAKE} " )
5+ set (MAKE "$ENV{MAKE} " )
66else ()
7- set (MAKE "make" )
7+ set (MAKE "make" )
88endif ()
99
1010include (ExternalProject)
@@ -212,7 +212,7 @@ ExternalProject_Add(
212212 DOWNLOAD_NO_PROGRESS 1
213213)
214214
215- if (TARGET openssl_external)
215+ if (TARGET openssl_external)
216216 add_dependencies (openldap_external openssl_external)
217217else ()
218218 message (STATUS "Not building OpenLDAP with OpenSSL" )
@@ -273,7 +273,7 @@ set(CURL_POST_INSTALL_COMMAND
273273# Conditionally check to see if there's a source directory or not.
274274# If there is, use it. Otherwise, download the latest version.
275275#
276- if (DEFINED ENV{CURL_SOURCE_DIR})
276+ if (DEFINED ENV{CURL_SOURCE_DIR})
277277 message (STATUS "Building curl from source directory: $ENV{CURL_SOURCE_DIR} " )
278278 ExternalProject_Add(
279279 curl_external
@@ -325,10 +325,10 @@ set(CURL_INCLUDE_DIRS
325325set (CURL_LIB_DIR ${CURL_INSTALL_DIR} /lib)
326326
327327# Fuzzing engine
328- if (DEFINED ENV{LIB_FUZZING_ENGINE})
328+ if (DEFINED ENV{LIB_FUZZING_ENGINE})
329329 # Check to see if ENV{LIB_FUZZING_ENGINE} is a file. If so, use it directly.
330330 # Otherwise, assume it's a flag to the compiler.
331- if (EXISTS $ENV{LIB_FUZZING_ENGINE} )
331+ if (EXISTS $ENV{LIB_FUZZING_ENGINE} )
332332 message (STATUS "Using LIB_FUZZING_ENGINE file: $ENV{LIB_FUZZING_ENGINE} " )
333333 set (LIB_FUZZING_ENGINE $ENV{LIB_FUZZING_ENGINE} )
334334 set (LIB_FUZZING_ENGINE_FLAG "" )
0 commit comments