summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cmake_uninstall.cmake.in25
1 files changed, 13 insertions, 12 deletions
diff --git a/cmake_uninstall.cmake.in b/cmake_uninstall.cmake.in
index 47187f5..c8ff0b7 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)
-
-
-