mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
Fix detection of debug binaries. If mysqld ouputs "debug xx" in the variable list it's a debug binary
This commit is contained in:
parent
08ef106201
commit
95e329152f
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue