aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authornicole mazzuca <mazzucan@outlook.com>2021-02-16 11:41:36 -0800
committerGitHub <noreply@github.com>2021-02-16 11:41:36 -0800
commit5f29a7a5cae5374e99a488f3b324f1948de43c89 (patch)
treec7b997803f1b22bb5d556c6f57b03c0392f433aa /scripts
parent0ebdff50fc07d797a6b06a39cd8c6c79f26c360f (diff)
downloadvcpkg-5f29a7a5cae5374e99a488f3b324f1948de43c89.tar.gz
vcpkg-5f29a7a5cae5374e99a488f3b324f1948de43c89.zip
[scripts-audit] execute_process (#16190)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cmake/execute_process.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/cmake/execute_process.cmake b/scripts/cmake/execute_process.cmake
index 2207cfab2..206bd95b1 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()