mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 11:27:39 +02:00
Do the check of special mysqld exe for master or slave after command line args have been parsed
This commit is contained in:
parent
127e401185
commit
ddf7e2a5f0
1 changed files with 6 additions and 3 deletions
|
|
@ -487,9 +487,6 @@ sub initial_setup () {
|
|||
"$glob_basedir/sql/release/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
|
||||
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
|
||||
# --------------------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue