aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <winter@kde.org>2009-04-10 20:49:45 +0000
committerAllen Winter <winter@kde.org>2009-04-10 20:49:45 +0000
commit2d26fb16c057cfbd17c099bf113ec66ef1e9370c (patch)
tree460b81b6cf3744162c995794ca85a17cd03873f6
parent10cc4b25a49c97e7b7d84cd60f8b2d6df8492743 (diff)
downloadextra-cmake-modules-2d26fb16c057cfbd17c099bf113ec66ef1e9370c.tar.gz
extra-cmake-modules-2d26fb16c057cfbd17c099bf113ec66ef1e9370c.tar.bz2
another try at making a nice message when a required package cannot be found.
svn path=/trunk/KDE/kdelibs/; revision=952076
-rw-r--r--modules/MacroLogFeature.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/MacroLogFeature.cmake b/modules/MacroLogFeature.cmake
index 9a487687..5db50edf 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-- You must install them before this software installation can continue.\n-----------------------------------------------------------------------------\n${_requirements}")
+ SET(_summary "${_summary}\n-----------------------------------------------------------------------------\n-- The following REQUIRED packages could NOT be located on your system.\n-- You must install these packages before continuing.\n-----------------------------------------------------------------------------\n${_requirements}")
FILE(REMOVE ${_missingFile})
SET(_haveMissingReq 1)
ENDIF (EXISTS ${_missingFile})