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 | 596440455f781a3e8e7ca046b888eb2f6d57ef97 (patch) | |
tree | 8b519e2227cef7393d707f959cafa11f4f3a0be6 /scripts | |
parent | f92e40cfbbc25fff06588ebbcab43c6a1bd27b37 (diff) | |
download | mariadb-git-596440455f781a3e8e7ca046b888eb2f6d57ef97.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')
-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 |