aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurent Montel <montel@kde.org>2007-07-01 13:45:31 +0000
committerLaurent Montel <montel@kde.org>2007-07-01 13:45:31 +0000
commitae82ad3c5e2515007f1911faa261efb78ce6ea82 (patch)
tree869f4e4656c634a427a2286e08061a9a63f67906
parentfe88df9546aac1e6d6a9401c4db33e4c8aa759f5 (diff)
downloadextra-cmake-modules-ae82ad3c5e2515007f1911faa261efb78ce6ea82.tar.gz
extra-cmake-modules-ae82ad3c5e2515007f1911faa261efb78ce6ea82.tar.bz2
Fix typo
svn path=/trunk/KDE/kdelibs/; revision=682053
-rw-r--r--modules/FindQCA2.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/FindQCA2.cmake b/modules/FindQCA2.cmake
index de855511..02c78a78 100644
--- a/modules/FindQCA2.cmake
+++ b/modules/FindQCA2.cmake
@@ -45,13 +45,13 @@ else (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES)
set(QCA2_FOUND TRUE)
else (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES)
if (NOT QCA2_INCLUDE_DIR)
- message(STATUS "Could NOT find QCA2 includes in ${_Qca2IncDir}")
+ message(STATUS "Could NOT find QCA2 includes")
endif (NOT QCA2_INCLUDE_DIR)
if (NOT QCA2_LIBRARIES)
- message(STATUS "Could NOT find QCA2 libraries in ${_Qca2LinkDir}")
+ message(STATUS "Could NOT find QCA2 libraries")
endif (NOT QCA2_LIBRARIES)
if (QCA2_FIND_REQUIRED)
- message(SEND_ERROR "Could NOT find QCA2")
+ message(FATAL_ERROR "Could NOT find QCA2")
endif (QCA2_FIND_REQUIRED)
endif (QCA2_INCLUDE_DIR AND QCA2_LIBRARIES)