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/FindGIF.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/FindGIF.cmake')
| -rw-r--r-- | modules/FindGIF.cmake | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/modules/FindGIF.cmake b/modules/FindGIF.cmake index 6222b0d8..17097160 100644 --- a/modules/FindGIF.cmake +++ b/modules/FindGIF.cmake @@ -24,12 +24,12 @@ if(GIF_INCLUDE_DIR AND GIF_LIBRARIES)  endif(GIF_INCLUDE_DIR AND GIF_LIBRARIES)  if(GIF_FOUND) -  if(not GIF_FIND_QUIETLY) +  if(NOT GIF_FIND_QUIETLY)      message(STATUS "Found GIF: ${GIF_LIBRARIES}") -  endif(not GIF_FIND_QUIETLY) +  endif(NOT GIF_FIND_QUIETLY)  else(GIF_FOUND)    if(GIF_FIND_REQUIRED) -    message(FATAL_ERROR "Could not find GIF") +    message(FATAL_ERROR "Could NOT find GIF")    endif(GIF_FIND_REQUIRED)  endif(GIF_FOUND) | 
