mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-24 07:08:38 -05:00
Remove CMake-language block-end command arguments
Ancient versions of CMake required else(), endif(), and similar block
termination commands to have arguments matching the command starting the
block. This is no longer the preferred style.
Run the following shell code:
for c in else endif endforeach endfunction endmacro endwhile; do
echo 's/\b'"$c"'\(\s*\)(.\+)/'"$c"'\1()/'
done >convert.sed &&
git ls-files -z -- bootstrap '*.cmake' '*.cmake.in' '*CMakeLists.txt' |
egrep -z -v '^(Utilities/cm|Source/kwsys/)' |
egrep -z -v 'Tests/CMakeTests/While-Endwhile-' |
xargs -0 sed -i -f convert.sed &&
rm convert.sed
This commit is contained in:
@@ -1,14 +1,14 @@
|
||||
message("This is install script 2.")
|
||||
if(INSTALL_SCRIPT_1_DID_RUN)
|
||||
message("Install script ordering works.")
|
||||
else(INSTALL_SCRIPT_1_DID_RUN)
|
||||
else()
|
||||
message(FATAL_ERROR "Install script 1 did not run before install script 2.")
|
||||
endif(INSTALL_SCRIPT_1_DID_RUN)
|
||||
endif()
|
||||
if(INSTALL_CODE_DID_RUN)
|
||||
message("Install code ordering works.")
|
||||
else(INSTALL_CODE_DID_RUN)
|
||||
else()
|
||||
message(FATAL_ERROR "Install script 2 did not run after install code.")
|
||||
endif(INSTALL_CODE_DID_RUN)
|
||||
endif()
|
||||
file(WRITE "${CMAKE_INSTALL_PREFIX}/MyTest/InstallScriptOut.cmake"
|
||||
"set(CMAKE_INSTALL_SCRIPT_DID_RUN 1)\n"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user