diff options
author | lenz@mysql.com <> | 2002-10-15 21:28:38 +0200 |
---|---|---|
committer | lenz@mysql.com <> | 2002-10-15 21:28:38 +0200 |
commit | ab67c943a93c3030afd22daf6849dae3f6d539ad (patch) | |
tree | c33acc51d9b3271381700e51e68b10dbc6156086 /Build-tools | |
parent | 73506bb612822dc25c940a2ca2f8b1e84a0a395d (diff) | |
download | mariadb-git-ab67c943a93c3030afd22daf6849dae3f6d539ad.tar.gz |
- fixed Do-compile to actually add InnoDB support when requested to do so
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 9 |
1 files changed, 8 insertions, 1 deletions
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) { |