diff options
author | monty@narttu.mysql.fi <> | 2003-03-21 18:53:55 +0200 |
---|---|---|
committer | monty@narttu.mysql.fi <> | 2003-03-21 18:53:55 +0200 |
commit | 112dfa59000eed2e53d43097949ec384d3d37320 (patch) | |
tree | ce48d336533b0ff442f6fd114d61fffcfbdc1941 /support-files/binary-configure.sh | |
parent | 543bcba894980e5b6b8b35181ca6e45232b46537 (diff) | |
download | mariadb-git-112dfa59000eed2e53d43097949ec384d3d37320.tar.gz |
Fixes for fill_help_tables.sql
Diffstat (limited to 'support-files/binary-configure.sh')
-rw-r--r-- | support-files/binary-configure.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/support-files/binary-configure.sh b/support-files/binary-configure.sh index 107f468bffc..884a8363e22 100644 --- a/support-files/binary-configure.sh +++ b/support-files/binary-configure.sh @@ -14,11 +14,11 @@ echo "and start the MySQL server for you. If you run into any trouble, please" echo "consult the MySQL manual, that you can find in the Docs directory." echo "" -./scripts/mysql_install_db +./scripts/mysql_install_db --no-defaults if [ $? = 0 ] then echo "Starting the mysqld server. You can test that it is up and running" echo "with the command:" echo "./bin/mysqladmin version" - ./bin/mysqld_safe & + ./bin/mysqld_safe --no-defaults & fi |