From 61062239c9937a29814256256b56a95bf912e68c Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 15 Oct 2002 21:28:38 +0200 Subject: [PATCH] - fixed Do-compile to actually add InnoDB support when requested to do so Build-tools/Do-compile: - fixed brainfart that ruined the 3.23.53-Max binaries: of course "--with-innodb" has to be added, when requested (will be part of 3.23.53a packages now) --- Build-tools/Do-compile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index a3da1804af5..0a4776b3eb9 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -215,7 +215,14 @@ if ($opt_stage <= 1) # Only enable InnoDB when requested (required to be able to # build the "Classic" packages that do not include InnoDB) - $opt_config_options.= " --without-innodb" if (!$opt_innodb); + if ($opt_innodb) + { + $opt_config_options.= " --with-innodb"; + } + else + { + $opt_config_options.= " --without-innodb"; + } if ($opt_with_other_libc) {