diff options
author | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2010-04-16 08:30:33 (GMT) |
---|---|---|
committer | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2010-04-16 08:30:33 (GMT) |
commit | 1f8a67b2eeac1917e27440102d0696e69102058a (patch) | |
tree | 752e4a1051ef733d91a2233d42238448eef4b46b /Modules/FindASPELL.cmake | |
parent | 32a3b1fb40c8d1f473d934f045d59b5372f8266d (diff) | |
download | CMake-1f8a67b2eeac1917e27440102d0696e69102058a.zip CMake-1f8a67b2eeac1917e27440102d0696e69102058a.tar.gz CMake-1f8a67b2eeac1917e27440102d0696e69102058a.tar.bz2 |
FindASPELL: no need to set QUIETLY explicitly
Diffstat (limited to 'Modules/FindASPELL.cmake')
-rw-r--r-- | Modules/FindASPELL.cmake | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Modules/FindASPELL.cmake b/Modules/FindASPELL.cmake index c11c2e3..a211ab0 100644 --- a/Modules/FindASPELL.cmake +++ b/Modules/FindASPELL.cmake @@ -20,11 +20,6 @@ # (To distributed this file outside of CMake, substitute the full # License text for the above reference.) -IF (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES) - # Already in cache, be silent - SET(ASPELL_FIND_QUIETLY TRUE) -ENDIF (ASPELL_INCLUDE_DIR AND ASPELL_LIBRARIES) - FIND_PATH(ASPELL_INCLUDE_DIR aspell.h ) FIND_LIBRARY(ASPELL_LIBRARIES NAMES aspell aspell-15 libaspell-15 libaspell) @@ -34,5 +29,4 @@ FIND_LIBRARY(ASPELL_LIBRARIES NAMES aspell aspell-15 libaspell-15 libaspell) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(ASPELL DEFAULT_MSG ASPELL_LIBRARIES ASPELL_INCLUDE_DIR) - MARK_AS_ADVANCED(ASPELL_INCLUDE_DIR ASPELL_LIBRARIES) |