summaryrefslogtreecommitdiff
path: root/Build-tools
diff options
context:
space:
mode:
authorunknown <lenz@mysql.com>2002-08-29 13:35:12 +0200
committerunknown <lenz@mysql.com>2002-08-29 13:35:12 +0200
commit640a64fb1d9c23641284dc9a68214170c48f66fa (patch)
tree031920a590909740b6932a5ce7f0f1a2a5f059d6 /Build-tools
parentcfb29c98e099a5f5899e7b98e1a38208197ed735 (diff)
downloadmariadb-git-640a64fb1d9c23641284dc9a68214170c48f66fa.tar.gz
- added two small fixes to Do-compile script
Build-tools/Do-compile: - actually add the with-other-libc option to the config options when set - fixed some odd-placed quotation marks in the configure line
Diffstat (limited to 'Build-tools')
-rwxr-xr-xBuild-tools/Do-compile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile
index b2048f12c4b..c50ed7810bd 100755
--- a/Build-tools/Do-compile
+++ b/Build-tools/Do-compile
@@ -159,7 +159,8 @@ if ($opt_stage <= 1)
}
if ($opt_with_other_libc)
{
- $opt_with_other_libc = "--with-other-libc=$opt_with_other_libc";
+ $opt_with_other_libc= "--with-other-libc=$opt_with_other_libc";
+ $opt_config_options.= " $opt_with_other_libc";
}
if (!$opt_enable_shared)
{
@@ -181,7 +182,7 @@ if ($opt_stage <= 1)
{
$opt_config_options.= " --with-libwrap"
}
- check_system("$opt_config_env ./configure --prefix=/usr/local/mysql \"--with-comment=Official MySQL$opt_version_suffix binary\" --with-extra-charsets=complex \"--with-server-suffix=$opt_version_suffix\" --enable-thread-safe-client --enable-local-infile $opt_config_options","Thank you for choosing MySQL");
+ check_system("$opt_config_env ./configure --prefix=/usr/local/mysql --with-comment=\"Official MySQL$opt_version_suffix binary\" --with-extra-charsets=complex --with-server-suffix=\"$opt_version_suffix\" --enable-thread-safe-client --enable-local-infile $opt_config_options","Thank you for choosing MySQL");
if (-d "$pwd/$host/include-mysql")
{
safe_system("cp -r $pwd/$host/include-mysql/* $pwd/$host/$ver/include");