diff options
author | Craig Scott <craig.scott@crascit.com> | 2021-02-18 12:39:13 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-02-18 12:39:23 (GMT) |
commit | cb2dc8207cd685b572b2d7a3e4ddd401a84af5ff (patch) | |
tree | 6724e73cfdea86934d86044f37e1b9b2e2bf0150 /Modules | |
parent | b8762f31897e7b8fa5fa85bd20bc97f945098914 (diff) | |
parent | bd876f3849663959f4b8b7c7f2052ecbb53b8500 (diff) | |
download | CMake-cb2dc8207cd685b572b2d7a3e4ddd401a84af5ff.zip CMake-cb2dc8207cd685b572b2d7a3e4ddd401a84af5ff.tar.gz CMake-cb2dc8207cd685b572b2d7a3e4ddd401a84af5ff.tar.bz2 |
Merge topic 'fetchcontent-patch-step-typo'
bd876f3849 FetchContent: Restore patch command support
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5822
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/ExternalProject.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/ExternalProject.cmake b/Modules/ExternalProject.cmake index 2b413c2..4a9809b 100644 --- a/Modules/ExternalProject.cmake +++ b/Modules/ExternalProject.cmake @@ -3897,7 +3897,7 @@ function(_ep_do_preconfigure_steps_now name) # Once any step has to run, all later steps have to be run too set(need_to_run FALSE) - foreach(step IN ITEMS download update parse) + foreach(step IN ITEMS download update patch) if(update_disconnected AND "${step}" STREQUAL "update") continue() endif() |