diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2012-10-29 16:52:15 +0100 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2012-10-29 16:52:15 +0100 |
commit | 4839f61bbd2996833c9279550f5ac13b199edda7 (patch) | |
tree | 8f8fc24915a587cceda17ee1b4693beb35cbbd69 /cmake | |
parent | cd5a6304b981d456ac7cd3dfb2ebc3ccf9bfede7 (diff) | |
download | mariadb-git-4839f61bbd2996833c9279550f5ac13b199edda7.tar.gz |
MDEV-3822 : 10.0-serg fails on windows buildslaves
Ensure semicolons are not lost when concatenating fill_help_tables to bootstrap.sql in Windows.
5.6 bootstrapper requires semicolons to separate bootstrapper commands.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/create_initial_db.cmake.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/create_initial_db.cmake.in b/cmake/create_initial_db.cmake.in index 0b11a73e02a..93266b1f870 100644 --- a/cmake/create_initial_db.cmake.in +++ b/cmake/create_initial_db.cmake.in @@ -40,7 +40,7 @@ FOREACH(FILENAME mysql_system_tables.sql mysql_system_tables_data.sql) ENDFOREACH() ENDFOREACH() FILE(READ ${CMAKE_SOURCE_DIR}/scripts/fill_help_tables.sql CONTENTS) -FILE(APPEND bootstrap.sql ${CONTENTS}) +FILE(APPEND bootstrap.sql "${CONTENTS}") FILE(REMOVE_RECURSE mysql) |