Commit 4839f61b authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

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.
parent cd5a6304
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment