Fix detection of debug binaries. If mysqld ouputs "debug xx" in the variable...

Fix detection of debug binaries. If mysqld ouputs "debug xx" in the variable list it's a debug binary
parent dd2a184f
......@@ -1889,7 +1889,7 @@ sub check_ssl_support ($) {
sub check_debug_support ($) {
my $mysqld_variables= shift;
if ( $mysqld_variables->{'debug'} )
if ( ! $mysqld_variables->{'debug'} )
{
#mtr_report("Binaries are not debug compiled");
$debug_compiled_binaries= 0;
......
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