summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCraig Scott <craig.scott@crascit.com>2024-06-07 06:59:20 (GMT)
committerCraig Scott <craig.scott@crascit.com>2024-06-07 06:59:20 (GMT)
commit11b684c449fd736575de2c4446f9e1e5fcbb56ba (patch)
treed5034ffccbe091b28dfa5d0513c0c3be0486f9e8
parenta02eec4a9f1b7058d22d32c3d8d8b1125b5f8973 (diff)
downloadCMake-11b684c449fd736575de2c4446f9e1e5fcbb56ba.zip
CMake-11b684c449fd736575de2c4446f9e1e5fcbb56ba.tar.gz
CMake-11b684c449fd736575de2c4446f9e1e5fcbb56ba.tar.bz2
FetchContent: Fix typos in stamp/step file names
The exact file names don't technically matter, but the wrong names are confusing and misleading.
-rw-r--r--Modules/FetchContent.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/FetchContent.cmake b/Modules/FetchContent.cmake
index 0763f54..96374c9 100644
--- a/Modules/FetchContent.cmake
+++ b/Modules/FetchContent.cmake
@@ -1674,7 +1674,7 @@ function(__FetchContent_populateDirect)
# using a sub-build and is not appropriate for us here.
set(download_script ${_EP_TMP_DIR}/download.cmake)
- set(update_script ${_EP_TMP_DIR}/upload.cmake)
+ set(update_script ${_EP_TMP_DIR}/update.cmake)
set(patch_script ${_EP_TMP_DIR}/patch.cmake)
_ep_add_download_command(${contentName}
SCRIPT_FILE ${download_script}
@@ -1690,7 +1690,7 @@ function(__FetchContent_populateDirect)
)
set(download_stamp ${_EP_STAMP_DIR}/download.stamp)
- set(update_stamp ${_EP_STAMP_DIR}/upload.stamp)
+ set(update_stamp ${_EP_STAMP_DIR}/update.stamp)
set(patch_stamp ${_EP_STAMP_DIR}/patch.stamp)
__FetchContent_doStepDirect(
SCRIPT_FILE ${download_script}