From 4839f61bbd2996833c9279550f5ac13b199edda7 Mon Sep 17 00:00:00 2001 From: Vladislav Vaintroub Date: Mon, 29 Oct 2012 16:52:15 +0100 Subject: [PATCH] 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. --- cmake/create_initial_db.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)