diff options
author | David Faure <faure@kde.org> | 2006-02-15 10:49:53 +0000 |
---|---|---|
committer | David Faure <faure@kde.org> | 2006-02-15 10:49:53 +0000 |
commit | eaad615ee85800bedbf2088326399027c95d0740 (patch) | |
tree | a246899fbfde3fe0b1d000f2b93455cf20dcd144 /modules/FindHSPELL.cmake | |
parent | ffc69376dc591eae7b0ed2e974a599fb1b8b2aa8 (diff) | |
download | extra-cmake-modules-eaad615ee85800bedbf2088326399027c95d0740.tar.gz extra-cmake-modules-eaad615ee85800bedbf2088326399027c95d0740.tar.bz2 |
Hmm, "NOT" can't be lowercased. I tested before lowercasing that last one, of course...
svn path=/trunk/KDE/kdelibs/; revision=509625
Diffstat (limited to 'modules/FindHSPELL.cmake')
-rw-r--r-- | modules/FindHSPELL.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/FindHSPELL.cmake b/modules/FindHSPELL.cmake index b0681d43..45475e9a 100644 --- a/modules/FindHSPELL.cmake +++ b/modules/FindHSPELL.cmake @@ -24,12 +24,12 @@ if(HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES) endif(HSPELL_INCLUDE_DIR AND HSPELL_LIBRARIES) if(HSPELL_FOUND) - if(not HSPELL_FIND_QUIETLY) + if(NOT HSPELL_FIND_QUIETLY) message(STATUS "Found HSPELL: ${HSPELL_LIBRARIES}") - endif(not HSPELL_FIND_QUIETLY) + endif(NOT HSPELL_FIND_QUIETLY) else(HSPELL_FOUND) if(HSPELL_FIND_REQUIRED) - message(FATAL_ERROR "Could not find HSPELL") + message(FATAL_ERROR "Could NOT find HSPELL") endif(HSPELL_FIND_REQUIRED) endif(HSPELL_FOUND) |