aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllen Winter <winter@kde.org>2007-03-02 18:58:48 +0000
committerAllen Winter <winter@kde.org>2007-03-02 18:58:48 +0000
commitcef8870c20ee21908f0b7aa8d83523ff6bb655e3 (patch)
treeec00dec8d37cdd494be3b84708937f73964e3b1e
parent1078a4c4637b0224818ce1f198c0e68d33e1f349 (diff)
downloadextra-cmake-modules-cef8870c20ee21908f0b7aa8d83523ff6bb655e3.tar.gz
extra-cmake-modules-cef8870c20ee21908f0b7aa8d83523ff6bb655e3.tar.bz2
formatting fixups
svn path=/trunk/KDE/kdelibs/; revision=638627
-rw-r--r--modules/MacroLogFeature.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/MacroLogFeature.cmake b/modules/MacroLogFeature.cmake
index 55f7b69f..f48a6cc2 100644
--- a/modules/MacroLogFeature.cmake
+++ b/modules/MacroLogFeature.cmake
@@ -66,12 +66,12 @@ MACRO(MACRO_LOG_FEATURE _var _package _description _url ) # _required _minvers _
ENDIF (${_required} MATCHES "[Tt][Rr][Uu][Ee]")
ENDIF (${_var})
- SET(_logtext "> ${_package}")
+ SET(_logtext "+ ${_package}")
IF (${_minvers} MATCHES ".*")
SET(_logtext "${_logtext}, ${_minvers}")
ENDIF (${_minvers} MATCHES ".*")
- SET(_logtext "${_logtext}: ${_description}; ${_url};")
+ SET(_logtext "${_logtext}: ${_description} <${_url}>")
IF (${_comments} MATCHES ".*")
SET(_logtext "${_logtext}\n${_comments}")
ENDIF (${_comments} MATCHES ".*")
@@ -96,7 +96,7 @@ MACRO(MACRO_DISPLAY_FEATURE_LOG)
IF (EXISTS ${_file})
FILE(READ ${_file} _enabled)
FILE(REMOVE ${_file})
- SET(_summary "${_summary}----------------------------------------------------------------------------------\n-- The following list of OPTIONAL packages were located on your system. --\n-- You will have all the following features available from this software. --\n----------------------------------------------------------------------------------\n${_enabled}")
+ SET(_summary "${_summary}--------------------------------------------------------------------------------\n-- The following list of packages were located on your system. --\n-- You will have all the following features available from this software. --\n--------------------------------------------------------------------------------\n${_enabled}")
# SET(_summary "${_summary}Enabled Features:\n${_enabled}")
ENDIF (EXISTS ${_file})
@@ -104,7 +104,7 @@ MACRO(MACRO_DISPLAY_FEATURE_LOG)
IF (EXISTS ${_file})
FILE(READ ${_file} _disabled)
FILE(REMOVE ${_file})
- SET(_summary "${_summary}----------------------------------------------------------------------------------\n-- The following list of OPTIONAL packages could not be located on your system. --\n-- Please consider installing them to enable more features of this software. --\n----------------------------------------------------------------------------------\n${_disabled}")
+ SET(_summary "${_summary}--------------------------------------------------------------------------------\n-- The following list of packages could not be located on your system. --\n-- Consider installing them to enable more features from this software. --\n--------------------------------------------------------------------------------\n${_disabled}")
# SET(_summary "${_summary}Disabled Features:\n${_disabled}")
ENDIF (EXISTS ${_file})
MESSAGE(STATUS "${_summary}")