diff options
author | unknown <monty@narttu.mysql.fi> | 2003-03-21 18:53:55 +0200 |
---|---|---|
committer | unknown <monty@narttu.mysql.fi> | 2003-03-21 18:53:55 +0200 |
commit | e4ae47ff36894c6c776a26b16141cec5eddb34b0 (patch) | |
tree | ce48d336533b0ff442f6fd114d61fffcfbdc1941 /support-files/binary-configure.sh | |
parent | 75ad5e96e1d7b504e7a0372fd8632c047ac2336f (diff) | |
download | mariadb-git-e4ae47ff36894c6c776a26b16141cec5eddb34b0.tar.gz |
Fixes for fill_help_tables.sql
innobase/ha/ha0ha.c:
Removed compiler warnings
mysql-test/t/innodb.test:
Another fix for cardinality
scripts/Makefile.am:
Install fill_help_tables.sql in prefix/share/mysql
Don't install make_binary_distribution
scripts/fill_help_tables.sh:
use INSERT IGNORE to avoid errors
scripts/make_binary_distribution.sh:
Install and use fill_help_tables.sql
scripts/mysql_install_db.sh:
Search for and use fill_help_tables.sql
sql/mysqld.cc:
Don't write shutdown message when called from mysql_install_db
support-files/Makefile.am:
Don't install binary-configure
support-files/binary-configure.sh:
Don't use config files
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 |