diff options
author | Allen Winter <winter@kde.org> | 2009-04-10 20:32:18 +0000 |
---|---|---|
committer | Allen Winter <winter@kde.org> | 2009-04-10 20:32:18 +0000 |
commit | 10cc4b25a49c97e7b7d84cd60f8b2d6df8492743 (patch) | |
tree | 6fc46af4a4063d5f3990c81a91b7596f2e05d5b9 | |
parent | 4f6490f5fc3a2541af4aac5850e7eb9f171087d1 (diff) | |
download | extra-cmake-modules-10cc4b25a49c97e7b7d84cd60f8b2d6df8492743.tar.gz extra-cmake-modules-10cc4b25a49c97e7b7d84cd60f8b2d6df8492743.tar.bz2 |
Fix the info message when REQUIRED packages are not found.
svn path=/trunk/KDE/kdelibs/; revision=952070
-rw-r--r-- | modules/MacroLogFeature.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/MacroLogFeature.cmake b/modules/MacroLogFeature.cmake index ebaf9d18..9a487687 100644 --- a/modules/MacroLogFeature.cmake +++ b/modules/MacroLogFeature.cmake @@ -122,7 +122,7 @@ MACRO(MACRO_DISPLAY_FEATURE_LOG) IF (EXISTS ${_missingFile}) SET(_missingDeps 1) FILE(READ ${_missingFile} _requirements) - SET(_summary "${_summary}\n-----------------------------------------------------------------------------\n-- The following REQUIRED packages could NOT be located on your system.\n-- Consider installing them to enable more features from this software.\n-----------------------------------------------------------------------------\n${_requirements}") + SET(_summary "${_summary}\n-----------------------------------------------------------------------------\n-- The following REQUIRED packages could NOT be located on your system.\n-- You must install them before this software installation can continue.\n-----------------------------------------------------------------------------\n${_requirements}") FILE(REMOVE ${_missingFile}) SET(_haveMissingReq 1) ENDIF (EXISTS ${_missingFile}) |