aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-01-24 15:22:41 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2018-01-24 15:22:41 -0800
commitfd2f9816cc7aaecd52d335591d46efa3c9ea2f00 (patch)
tree5b2b32caccb9ae5c7169b9a1813b338f9d6be7ff /scripts
parent0c67c35bccc61945cee6511721c302bdbbaaeb10 (diff)
downloadvcpkg-fd2f9816cc7aaecd52d335591d46efa3c9ea2f00.tar.gz
vcpkg-fd2f9816cc7aaecd52d335591d46efa3c9ea2f00.zip
Don't expand variable
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cmake/vcpkg_apply_patches.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmake/vcpkg_apply_patches.cmake b/scripts/cmake/vcpkg_apply_patches.cmake
index ac6e5cc93..1894d6e9a 100644
--- a/scripts/cmake/vcpkg_apply_patches.cmake
+++ b/scripts/cmake/vcpkg_apply_patches.cmake
@@ -47,7 +47,7 @@ function(vcpkg_apply_patches)
RESULT_VARIABLE error_code
)
- if(error_code AND NOT ${_ap_QUIET})
+ if(error_code AND NOT _ap_QUIET)
message(STATUS "Applying patch failed. This is expected if this patch was previously applied.")
endif()