aboutsummaryrefslogtreecommitdiff
path: root/scripts/cmake/execute_process.cmake
diff options
context:
space:
mode:
authorjgehw <44170764+jgehw@users.noreply.github.com>2020-09-09 19:36:58 +0200
committerGitHub <noreply@github.com>2020-09-09 10:36:58 -0700
commit8b7e946c55507d491887bbfeb34453ff0c75c751 (patch)
tree08bfa65706900acdc50fdb59fb9137ae2b555708 /scripts/cmake/execute_process.cmake
parentbff4dd9c944b9fbad40ec1a36d7c2365287ce0a6 (diff)
downloadvcpkg-8b7e946c55507d491887bbfeb34453ff0c75c751.tar.gz
vcpkg-8b7e946c55507d491887bbfeb34453ff0c75c751.zip
[execute_process] Don't strip embedded semicolons (#12926)
Diffstat (limited to 'scripts/cmake/execute_process.cmake')
-rw-r--r--scripts/cmake/execute_process.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/cmake/execute_process.cmake b/scripts/cmake/execute_process.cmake
index 51f6ad160..97af4eea1 100644
--- a/scripts/cmake/execute_process.cmake
+++ b/scripts/cmake/execute_process.cmake
@@ -13,8 +13,8 @@ if (NOT DEFINED OVERRIDEN_EXECUTE_PROCESS)
message(FATAL_ERROR "This command cannot be executed in Download Mode.\nHalting portfile execution.\n")
endmacro()
else()
- macro(execute_process)
- _execute_process(${ARGV})
+ macro(_execute_process)
+ execute_process(${ARGV})
endmacro()
endif()
endif() \ No newline at end of file