1
0
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:
msvensson@pilot.mysql.com
2007-12-21 13:06:56 +01:00
parent 412ab8016b
commit 8ba9c0afa7

View File

@ -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,