mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Do the check of special mysqld exe for master or slave after command line args have been parsed
This commit is contained in:
@ -487,9 +487,6 @@ sub initial_setup () {
|
|||||||
"$glob_basedir/sql/release/mysqld",
|
"$glob_basedir/sql/release/mysqld",
|
||||||
"$glob_basedir/sql/debug/mysqld");
|
"$glob_basedir/sql/debug/mysqld");
|
||||||
|
|
||||||
$exe_master_mysqld= $exe_master_mysqld || $exe_mysqld;
|
|
||||||
$exe_slave_mysqld= $exe_slave_mysqld || $exe_mysqld;
|
|
||||||
|
|
||||||
# Use the mysqld found above to find out what features are available
|
# Use the mysqld found above to find out what features are available
|
||||||
collect_mysqld_features();
|
collect_mysqld_features();
|
||||||
|
|
||||||
@ -922,6 +919,12 @@ sub command_line_setup () {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# --------------------------------------------------------------------------
|
||||||
|
# Check if special exe was selected for master or slave
|
||||||
|
# --------------------------------------------------------------------------
|
||||||
|
$exe_master_mysqld= $exe_master_mysqld || $exe_mysqld;
|
||||||
|
$exe_slave_mysqld= $exe_slave_mysqld || $exe_mysqld;
|
||||||
|
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
# Check valgrind arguments
|
# Check valgrind arguments
|
||||||
# --------------------------------------------------------------------------
|
# --------------------------------------------------------------------------
|
||||||
|
Reference in New Issue
Block a user