diff options
author | David Faure <faure@kde.org> | 2008-10-13 22:09:22 +0000 |
---|---|---|
committer | David Faure <faure@kde.org> | 2008-10-13 22:09:22 +0000 |
commit | a1cc1ad94a41aefd55b1190c1d01d7c38037f305 (patch) | |
tree | 412494af301a819252731ec2abf61b07c892ee71 | |
parent | bb7830a6413a590008c02e4c715d48837aaa850d (diff) | |
download | extra-cmake-modules-a1cc1ad94a41aefd55b1190c1d01d7c38037f305.tar.gz extra-cmake-modules-a1cc1ad94a41aefd55b1190c1d01d7c38037f305.tar.bz2 |
seems it's FATAL_ERROR, not just FATAL
svn path=/trunk/KDE/kdelibs/; revision=871114
-rw-r--r-- | modules/FindStrigi.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindStrigi.cmake b/modules/FindStrigi.cmake index ee3057b0..dbc2c0fa 100644 --- a/modules/FindStrigi.cmake +++ b/modules/FindStrigi.cmake @@ -145,7 +145,7 @@ int main() if (${STRIGI_NEEDS_CHAR}) message(STATUS "Strigi API is pre-screwup check, need 'char'") else (${STRIGI_NEEDS_CHAR}) - message(FATAL "Strigi was found, but a simple test program does not compile, check CMakeFiles/CMakeError.log") + message(FATAL_ERROR "Strigi was found, but a simple test program does not compile, check CMakeFiles/CMakeError.log") endif (${STRIGI_NEEDS_CHAR}) endif (${STRIGI_NEEDS_SIGNED_CHAR}) macro_pop_required_vars() |