diff options
author | Jonathan Perkin <jonathan.perkin@oracle.com> | 2010-07-06 11:28:11 +0100 |
---|---|---|
committer | Jonathan Perkin <jonathan.perkin@oracle.com> | 2010-07-06 11:28:11 +0100 |
commit | 7515fe4deb052befaf8fab183bd6fdbcf55b118f (patch) | |
tree | 0342e4ee3bd744dc5465ba24dce78ac0a213a4a0 /cmake | |
parent | c0d2440565bc34f41528e01ebe4d652b330861c1 (diff) | |
download | mariadb-git-7515fe4deb052befaf8fab183bd6fdbcf55b118f.tar.gz |
Spell CMAKE_COMPILER_IS_GNUCC correctly.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/build_configurations/mysql_release.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/build_configurations/mysql_release.cmake b/cmake/build_configurations/mysql_release.cmake index 208551aae09..6e0f82e73a7 100644 --- a/cmake/build_configurations/mysql_release.cmake +++ b/cmake/build_configurations/mysql_release.cmake @@ -130,7 +130,7 @@ ENDIF() IF(UNIX) # Default GCC flags - IF(CMAKE_COMPILER_IS_GNUC) + IF(CMAKE_COMPILER_IS_GNUCC) SET(COMMON_C_FLAGS "-g -static-libgcc -fno-omit-frame-pointer") SET(CMAKE_C_FLAGS_DEBUG "-O ${COMMON_C_FLAGS}") SET(CMAKE_C_FLAGS_RELWITHDEBINFO "-O3 ${COMMON_C_FLAGS}") |