summaryrefslogtreecommitdiff
path: root/qpid/cpp
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2014-08-11 14:44:08 +0000
committerAlan Conway <aconway@apache.org>2014-08-11 14:44:08 +0000
commit17fc19e035513ac43c663163342ae2be513cf8b6 (patch)
tree6e33b3c2d3bfd257e57447638e6dbf1a8ab3c2ad /qpid/cpp
parent5ccde686eff0a9ce17635518c38d8c366b6437c8 (diff)
downloadqpid-python-17fc19e035513ac43c663163342ae2be513cf8b6.tar.gz
NO-JIRA: Remove annoying '*' in cmake build type message.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1617302 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
-rw-r--r--qpid/cpp/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/qpid/cpp/CMakeLists.txt b/qpid/cpp/CMakeLists.txt
index 6bb4a97f20..fbf11a0a4e 100644
--- a/qpid/cpp/CMakeLists.txt
+++ b/qpid/cpp/CMakeLists.txt
@@ -23,7 +23,7 @@ set (CMAKE_BUILD_TYPE RelWithDebInfo CACHE string
if (CMAKE_BUILD_TYPE MATCHES "Deb")
set (has_debug_symbols " (has debug symbols)")
endif (CMAKE_BUILD_TYPE MATCHES "Deb")
-message("Build type is *${CMAKE_BUILD_TYPE}*${has_debug_symbols}")
+message("Build type is \"${CMAKE_BUILD_TYPE}\"${has_debug_symbols}")
project(qpid-cpp)
@@ -234,4 +234,5 @@ add_subdirectory(examples)
include (CPack)
# Build type message again, last so it is visible at end of output.
-message("Build type is *${CMAKE_BUILD_TYPE}*${has_debug_symbols}")
+message("Build type is \"${CMAKE_BUILD_TYPE}\"${has_debug_symbols}")
+