Skip to content

Commit bc675ef

Browse files
committed
cmake_uninstall - fix always skipped if-block condition
1 parent c6766ce commit bc675ef

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmake/cmake_uninstall.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ foreach(file ${files})
3030

3131
if(IS_SYMLINK "${filepath}" OR EXISTS "${filepath}")
3232
file(REMOVE "${filepath}")
33-
else(IS_SYMLINK "${filepath}" OR EXISTS "${filepath}")
33+
else(NOT EXISTS "${filepath}")
3434
message(STATUS "File ${filepath} does not exist.")
3535
endif()
3636
endforeach()

0 commit comments

Comments
 (0)