summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorTor Didriksen <tor.didriksen@oracle.com>2012-10-23 13:41:34 +0200
committerTor Didriksen <tor.didriksen@oracle.com>2012-10-23 13:41:34 +0200
commit7873a6e4d71a5fe7b8dcfb850d65c81ee7a282c5 (patch)
tree471868a284d2500ca589edac195562365363a7ac /cmake
parente5b11572bcd947bef825b9c6a3feaf465e3f3f17 (diff)
downloadmariadb-git-7873a6e4d71a5fe7b8dcfb850d65c81ee7a282c5.tar.gz
Use MESSAGE(STATUS ...) as we don't want any popup from the build system.
Diffstat (limited to 'cmake')
-rw-r--r--cmake/mysql_version.cmake2
-rw-r--r--cmake/package_name.cmake2
2 files changed, 2 insertions, 2 deletions
diff --git a/cmake/mysql_version.cmake b/cmake/mysql_version.cmake
index 59ee318f47b..566d5ce416d 100644
--- a/cmake/mysql_version.cmake
+++ b/cmake/mysql_version.cmake
@@ -54,7 +54,7 @@ MACRO(GET_MYSQL_VERSION)
ENDIF()
SET(VERSION "${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}${EXTRA_VERSION}")
- MESSAGE("-- MySQL ${VERSION}")
+ MESSAGE(STATUS "MySQL ${VERSION}")
SET(MYSQL_BASE_VERSION "${MAJOR_VERSION}.${MINOR_VERSION}" CACHE INTERNAL "MySQL Base version")
SET(MYSQL_NO_DASH_VERSION "${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}")
# Use NDBVERSION irregardless of whether this is Cluster or not, if not
diff --git a/cmake/package_name.cmake b/cmake/package_name.cmake
index d9e0902c921..43ad794e77b 100644
--- a/cmake/package_name.cmake
+++ b/cmake/package_name.cmake
@@ -123,7 +123,7 @@ IF(NOT VERSION)
SET(package_name "mysql${PRODUCT_TAG}-${VERSION}-${SYSTEM_NAME_AND_PROCESSOR}")
ENDIF()
- MESSAGE("-- Packaging as: ${package_name}")
+ MESSAGE(STATUS "Packaging as: ${package_name}")
# Sometimes package suffix is added (something like "-icc-glibc23")
IF(PACKAGE_SUFFIX)