1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-14 02:08:27 +08:00

Tests: Remove workaround from RunCMake.ExternalProject MultiCommand case

Since commit 7249ba9677 (ExternalProject: Enforce that patch depends on update,
2020-04-03, v3.18.0-rc1~403^2) we do not need the workaround in the
MultiCommand case.
This commit is contained in:
Brad King
2020-08-26 13:52:28 -04:00
parent 8f73ff0c37
commit 7678fcd577

View File

@@ -20,10 +20,6 @@ ExternalProject_Add(multiCommand
COMMAND "${CMAKE_COMMAND}" -E echo "install 2"
)
# Workaround for issue 17229 (missing dependency between update and patch steps)
ExternalProject_Add_StepTargets(multiCommand NO_DEPENDS update)
ExternalProject_Add_StepDependencies(multiCommand patch multiCommand-update)
# Force all steps to be re-run by removing timestamps from any previous run
ExternalProject_Get_Property(multiCommand STAMP_DIR)
file(REMOVE_RECURSE "${STAMP_DIR}")