aboutsummaryrefslogtreecommitdiff
path: root/modules/FindASPELL.cmake
diff options
context:
space:
mode:
authorDavid Faure <faure@kde.org>2006-02-15 10:49:53 +0000
committerDavid Faure <faure@kde.org>2006-02-15 10:49:53 +0000
commiteaad615ee85800bedbf2088326399027c95d0740 (patch)
treea246899fbfde3fe0b1d000f2b93455cf20dcd144 /modules/FindASPELL.cmake
parentffc69376dc591eae7b0ed2e974a599fb1b8b2aa8 (diff)
downloadextra-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/FindASPELL.cmake')
-rw-r--r--modules/FindASPELL.cmake6
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)