From bc675ef9b25dffceb9c72df1bc9bf0d79046db72 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 26 Jan 2026 16:02:30 +0500 Subject: [PATCH] cmake_uninstall - fix always skipped if-block condition --- cmake/cmake_uninstall.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/cmake_uninstall.cmake.in b/cmake/cmake_uninstall.cmake.in index cb15e0c494..aa91cd810d 100644 --- a/cmake/cmake_uninstall.cmake.in +++ b/cmake/cmake_uninstall.cmake.in @@ -30,7 +30,7 @@ foreach(file ${files}) if(IS_SYMLINK "${filepath}" OR EXISTS "${filepath}") file(REMOVE "${filepath}") - else(IS_SYMLINK "${filepath}" OR EXISTS "${filepath}") + else(NOT EXISTS "${filepath}") message(STATUS "File ${filepath} does not exist.") endif() endforeach()