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 | 19fa78561e52592521e1282efcb842b117d1feb9 (patch) | |
tree | 471868a284d2500ca589edac195562365363a7ac /cmake/mysql_version.cmake | |
parent | c0f1e9cd287b3f6371de715457b66ed661db334a (diff) | |
download | mariadb-git-19fa78561e52592521e1282efcb842b117d1feb9.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 |