diff options
author | unknown <monty@work.mysql.com> | 2000-09-08 08:45:56 +0200 |
---|---|---|
committer | unknown <monty@work.mysql.com> | 2000-09-08 08:45:56 +0200 |
commit | 1dc6a46936306fbccaf19275e6f9dc4acc1e48a1 (patch) | |
tree | 8f202bdb798bff5ddced2be491a0eb2782cb351a /Build-tools | |
parent | 9dd68559a28cabde3236b417f718284d4202f386 (diff) | |
download | mariadb-git-1dc6a46936306fbccaf19275e6f9dc4acc1e48a1.tar.gz |
Fixed --no-defaults in installation
Build-tools/Do-compile:
Fixed missing --no-defaults
scripts/mysql_install_db.sh:
Fixed --no-defaults
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index 349a519c275..8d5fed87da5 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -145,7 +145,7 @@ if ($opt_stage <= 5 && !$opt_no_test) log_system("./bin/mysqladmin --no-defaults -u root -S $mysql_unix_port -s shutdown") || info("There was no mysqld running\n"); sleep(2); log_system("rm -f ./data/mysql/*"); - check_system("scripts/mysql_install_db --skip-locking","com/license"); + check_system("scripts/mysql_install_db --no-defaults --skip-locking","https://order"); safe_system("./bin/mysqld --no-defaults --basedir . --datadir ./data --skip-locking >> $log 2>&1 &"); sleep(2); } |