mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Ignore --skip-im
This commit is contained in:
@ -255,6 +255,11 @@ sub main {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
sub ignore_option {
|
||||||
|
my ($opt, $value)= @_;
|
||||||
|
print "Ignoring option '$opt'\n";
|
||||||
|
}
|
||||||
|
|
||||||
sub command_line_setup {
|
sub command_line_setup {
|
||||||
my $opt_comment;
|
my $opt_comment;
|
||||||
my $opt_usage;
|
my $opt_usage;
|
||||||
@ -303,6 +308,8 @@ sub command_line_setup {
|
|||||||
'combination=s' => \@opt_combinations,
|
'combination=s' => \@opt_combinations,
|
||||||
'skip-combination' => \&collect_option,
|
'skip-combination' => \&collect_option,
|
||||||
|
|
||||||
|
'skip-im' => \&ignore_option,
|
||||||
|
|
||||||
# Specify ports
|
# Specify ports
|
||||||
'build-thread|mtr-build-thread=i' => \$opt_mtr_build_thread,
|
'build-thread|mtr-build-thread=i' => \$opt_mtr_build_thread,
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user