diff options
author | Brad King <brad.king@kitware.com> | 2006-06-05 14:13:03 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-06-05 14:13:03 -0400 |
commit | 503e2baafb10cf69139b4767ce342e0327f43e25 (patch) | |
tree | 5079eb091e8cfabf14ffe874569661a994bc36e6 /cmake_uninstall.cmake.in | |
parent | 932e3524fc2d8ae331de5770540e9b463be8d76e (diff) | |
download | cmake-503e2baafb10cf69139b4767ce342e0327f43e25.tar.gz |
BUG: Use proper signature for EXEC_PROGRAM to get return value of cmake -E remove. Also fixed spelling error in message, and made non-existing files not a fatal error so that the rest of the files are removed.
Diffstat (limited to 'cmake_uninstall.cmake.in')
-rw-r--r-- | cmake_uninstall.cmake.in | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/cmake_uninstall.cmake.in b/cmake_uninstall.cmake.in index 47187f5a9d..c8ff0b7efa 100644 --- a/cmake_uninstall.cmake.in +++ b/cmake_uninstall.cmake.in @@ -6,16 +6,17 @@ FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) STRING(REGEX REPLACE "\n" ";" files "${files}") FOREACH(file ${files}) MESSAGE(STATUS "Uninstalling \"${file}\"") - IF(NOT EXISTS "${file}") - MESSAGE(FATAL_ERROR "File \"${file}\" does not exists.") - ENDIF(NOT EXISTS "${file}") - EXEC_PROGRAM("@CMAKE_COMMAND@" ARGS "-E remove \"${file}\"" - OUTPUT_VARIABLE rm_out - RETURN_VARIABLE rm_retval) - IF("${rm_retval}" GREATER 0) - MESSAGE(FATAL_ERROR "Problem when removing \"${file}\"") - ENDIF("${rm_retval}" GREATER 0) + IF(EXISTS "${file}") + EXEC_PROGRAM( + "@CMAKE_COMMAND@" ARGS "-E remove \"${file}\"" + OUTPUT_VARIABLE rm_out + RETURN_VALUE rm_retval + ) + IF("${rm_retval}" STREQUAL 0) + ELSE("${rm_retval}" STREQUAL 0) + MESSAGE(FATAL_ERROR "Problem when removing \"${file}\"") + ENDIF("${rm_retval}" STREQUAL 0) + ELSE(EXISTS "${file}") + MESSAGE(STATUS "File \"${file}\" does not exist.") + ENDIF(EXISTS "${file}") ENDFOREACH(file) - - - |