diff options
author | Jonathan Perkin <jonathan.perkin@oracle.com> | 2010-07-05 12:53:03 +0100 |
---|---|---|
committer | Jonathan Perkin <jonathan.perkin@oracle.com> | 2010-07-05 12:53:03 +0100 |
commit | 261c543610ca98208ca10695a6dde804448fb189 (patch) | |
tree | 8b519e2227cef7393d707f959cafa11f4f3a0be6 /scripts/CMakeLists.txt | |
parent | 863b07d038b4e6f3afaf2ccd4126d4db4233e6d6 (diff) | |
download | mariadb-git-261c543610ca98208ca10695a6dde804448fb189.tar.gz |
bug#54991: mysqld_safe reports syntax error and skips part of logic
while restarting server
TARGET_LINUX must be 'true' or 'false'.
Diffstat (limited to 'scripts/CMakeLists.txt')
-rwxr-xr-x | scripts/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/CMakeLists.txt b/scripts/CMakeLists.txt index 025bce0bbcf..4513b4619f8 100755 --- a/scripts/CMakeLists.txt +++ b/scripts/CMakeLists.txt @@ -243,9 +243,9 @@ SET(localstatedir ${MYSQL_DATADIR}) # some scripts use @TARGET_LINUX@ IF(CMAKE_SYSTEM_NAME MATCHES "Linux") - SET(TARGET_LINUX 1) + SET(TARGET_LINUX "true") ELSE() - SET(TARGET_LINUX 0) + SET(TARGET_LINUX "false") ENDIF() # Use cmake variables to inspect dependencies for |