Match closing statement, doh

This commit is contained in:
Miloš Komarčević 2021-03-19 16:14:27 +01:00
parent d49affaec5
commit b92002b304

View File

@ -16,7 +16,7 @@ FOREACH(file ${files})
ELSE("${rm_retval}" STREQUAL 0)
MESSAGE(FATAL_ERROR "Problem when removing \"${file}\"")
ENDIF("${rm_retval}" STREQUAL 0)
ELSE(EXISTS "${file}")
ELSE(IS_SYMLINK "${file}" OR EXISTS "${file}")
MESSAGE(STATUS "File \"${file}\" does not exist.")
ENDIF(EXISTS "${file}")
ENDIF(IS_SYMLINK "${file}" OR EXISTS "${file}")
ENDFOREACH(file)