diff options
Diffstat (limited to 'modules/FindASPELL.cmake')
-rw-r--r-- | modules/FindASPELL.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/FindASPELL.cmake b/modules/FindASPELL.cmake index f2ca068c..855f55c7 100644 --- a/modules/FindASPELL.cmake +++ b/modules/FindASPELL.cmake @@ -24,12 +24,12 @@ if(ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES) endif(ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES) if(ASPELL_FOUND) - if(not ASPELL_FIND_QUIETLY) + if(NOT ASPELL_FIND_QUIETLY) message(STATUS "Found ASPELL: ${ASPELL_LIBRARIES}") - endif(not ASPELL_FIND_QUIETLY) + endif(NOT ASPELL_FIND_QUIETLY) else(ASPELL_FOUND) if(ASPELL_FIND_REQUIRED) - message(FATAL_ERROR "Could not find ASPELL") + message(FATAL_ERROR "Could NOT find ASPELL") endif(ASPELL_FIND_REQUIRED) endif(ASPELL_FOUND) |