Commit 95e32915 authored by unknown's avatar unknown

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 08ef1062
...@@ -1889,7 +1889,7 @@ sub check_ssl_support ($) { ...@@ -1889,7 +1889,7 @@ sub check_ssl_support ($) {
sub check_debug_support ($) { sub check_debug_support ($) {
my $mysqld_variables= shift; my $mysqld_variables= shift;
if ( $mysqld_variables->{'debug'} ) if ( ! $mysqld_variables->{'debug'} )
{ {
#mtr_report("Binaries are not debug compiled"); #mtr_report("Binaries are not debug compiled");
$debug_compiled_binaries= 0; $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