1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

add --disable-shared equivalent

fix mtr (empty argument passed to mysqld)
This commit is contained in:
Vladislav Vaintroub
2009-11-25 05:13:51 +01:00
parent 23cd3cec41
commit 39a158221d
6 changed files with 31 additions and 18 deletions

View File

@ -4275,6 +4275,11 @@ sub mysqld_arguments ($$$) {
{
; # Dont add --skip-log-bin when mysqld have --log-slave-updates in config
}
elsif ($arg eq "")
{
# We can get an empty argument when we set environment variables to ""
# (e.g plugin not found). Just skip it.
}
else
{
mtr_add_arg($args, "%s", $arg);