diff options
author | Allen Winter <winter@kde.org> | 2009-03-01 17:19:39 +0000 |
---|---|---|
committer | Allen Winter <winter@kde.org> | 2009-03-01 17:19:39 +0000 |
commit | 3613f31ef1873544c274a1b77365e53464b720db (patch) | |
tree | c359a12f56afc40212c04a25d3a7c241b9cf0b4a /modules | |
parent | b32cde33229975966e54e31f19b90629056c9fb5 (diff) | |
download | extra-cmake-modules-3613f31ef1873544c274a1b77365e53464b720db.tar.gz extra-cmake-modules-3613f31ef1873544c274a1b77365e53464b720db.tar.bz2 |
fix a typo where OPTIONAL could be printed for missing *required* features.
svn path=/trunk/KDE/kdelibs/; revision=933810
Diffstat (limited to 'modules')
-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 21f6ddbd..ebaf9d18 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 OPTIONAL 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-- Consider installing them to enable more features from this software.\n-----------------------------------------------------------------------------\n${_requirements}") FILE(REMOVE ${_missingFile}) SET(_haveMissingReq 1) ENDIF (EXISTS ${_missingFile}) |