From 5f29a7a5cae5374e99a488f3b324f1948de43c89 Mon Sep 17 00:00:00 2001 From: nicole mazzuca Date: Tue, 16 Feb 2021 11:41:36 -0800 Subject: [PATCH] [scripts-audit] execute_process (#16190) --- scripts/cmake/execute_process.cmake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/cmake/execute_process.cmake b/scripts/cmake/execute_process.cmake index 2207cfab25..206bd95b12 100644 --- a/scripts/cmake/execute_process.cmake +++ b/scripts/cmake/execute_process.cmake @@ -7,12 +7,12 @@ is enabled. In order to execute a process in Download Mode call `vcpkg_execute_in_download_mode()` instead. #]===] -if (NOT DEFINED OVERRIDEN_EXECUTE_PROCESS) - set(OVERRIDEN_EXECUTE_PROCESS ON) +if (NOT DEFINED Z_VCPKG_OVERRIDEN_EXECUTE_PROCESS) + set(Z_VCPKG_OVERRIDEN_EXECUTE_PROCESS ON) if (DEFINED VCPKG_DOWNLOAD_MODE) - macro(execute_process) + function(execute_process) message(FATAL_ERROR "This command cannot be executed in Download Mode.\nHalting portfile execution.\n") - endmacro() + endfunction() endif() endif()