aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2018-09-04 16:47:47 -0700
committerRobert Schumacher <roschuma@microsoft.com>2018-09-04 16:47:47 -0700
commit5d0b0ec82f711082f5babd29aad76a5759608cf2 (patch)
treeca8b6950bbd92b4d408fa6693db79e688f9e96f7 /scripts
parent4eb219c9fd5a5d2d6414ae3976088bff93101c95 (diff)
downloadvcpkg-5d0b0ec82f711082f5babd29aad76a5759608cf2.tar.gz
vcpkg-5d0b0ec82f711082f5babd29aad76a5759608cf2.zip
[vcpkg_extract_source_archive] Fix incorrect var usage in vcpkg_extract_source_archive
Diffstat (limited to 'scripts')
-rw-r--r--scripts/cmake/vcpkg_extract_source_archive.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cmake/vcpkg_extract_source_archive.cmake b/scripts/cmake/vcpkg_extract_source_archive.cmake
index b1e2110a7..dbd17b5b6 100644
--- a/scripts/cmake/vcpkg_extract_source_archive.cmake
+++ b/scripts/cmake/vcpkg_extract_source_archive.cmake
@@ -80,7 +80,7 @@ function(vcpkg_extract_source_archive_ex)
string(SUBSTRING ${SANITIZED_REF} ${FROM_REF} ${REF_LENGTH} SHORTENED_SANITIZED_REF)
# Hash the archive hash along with the patches. Take the first 10 chars of the hash
- file(SHA512 ${ARCHIVE} PATCHSET_HASH)
+ file(SHA512 ${_vesae_ARCHIVE} PATCHSET_HASH)
foreach(PATCH IN LISTS _vesae_PATCHES)
get_filename_component(ABSOLUTE_PATCH "${PATCH}" ABSOLUTE BASE_DIR "${CURRENT_PORT_DIR}")
file(SHA512 ${ABSOLUTE_PATCH} CURRENT_HASH)