Commit ab72618b authored by unknown's avatar unknown

Fix broken --valgrind-options option.

parent 6ef02da5
...@@ -2436,7 +2436,7 @@ sub valgrind_arguments { ...@@ -2436,7 +2436,7 @@ sub valgrind_arguments {
if ( $opt_valgrind_options ) if ( $opt_valgrind_options )
{ {
# FIXME split earlier and put into @glob_valgrind_* # FIXME split earlier and put into @glob_valgrind_*
mtr_add_arg($args, split(' ', $opt_valgrind_options)); mtr_add_arg($args, '%s', $_) for (split(' ', $opt_valgrind_options)));
} }
mtr_add_arg($args, $$exe); mtr_add_arg($args, $$exe);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment