diff options
author | Tor Didriksen <tor.didriksen@oracle.com> | 2012-10-23 13:41:34 +0200 |
---|---|---|
committer | Tor Didriksen <tor.didriksen@oracle.com> | 2012-10-23 13:41:34 +0200 |
commit | 7873a6e4d71a5fe7b8dcfb850d65c81ee7a282c5 (patch) | |
tree | 471868a284d2500ca589edac195562365363a7ac /cmake/mysql_version.cmake | |
parent | e5b11572bcd947bef825b9c6a3feaf465e3f3f17 (diff) | |
download | mariadb-git-7873a6e4d71a5fe7b8dcfb850d65c81ee7a282c5.tar.gz |
Use MESSAGE(STATUS ...) as we don't want any popup from the build system.
Diffstat (limited to 'cmake/mysql_version.cmake')
-rw-r--r-- | cmake/mysql_version.cmake | 2 |
1 files changed, 1 insertions, 1 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 |