diff options
author | unknown <monty@hundin.mysql.fi> | 2002-02-10 12:47:37 +0200 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-02-10 12:47:37 +0200 |
commit | c1caaf756f1b83a805505344240f74383aba9642 (patch) | |
tree | 7c1d39f59ed0aa7eba1303ca1a12035653eb1ae2 /Build-tools | |
parent | 61b769d94a9bbbea987ce4fb3afbe1f6d47795cd (diff) | |
download | mariadb-git-c1caaf756f1b83a805505344240f74383aba9642.tar.gz |
Fixed bug in full join with many NULL fields.
Build-tools/Do-compile:
Fixed 'touch' and 'chmod' of files.
Docs/manual.texi:
Changelog
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index fedee8c7774..0ab631a4161 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -108,7 +108,7 @@ $|=1; select STDOUT; $|=1; -safe_cd("$host"); +safe_cd($host); if ($opt_stage == 0 && ! $opt_use_old_distribution) { safe_system("gunzip < $opt_distribution | $tar xf -"); @@ -118,6 +118,7 @@ if ($opt_stage == 0 && ! $opt_use_old_distribution) system("touch timestamp; find . -newer timestamp -print | xargs touch; rm -f timestamp"); sleep(2); # Ensure that files we don't want to rebuild are newer than other files + safe_cd($ver); foreach $name ("configure", "Docs/include.texi", "Docs/*.html", "Docs/manual.txt", "Docs/mysql.info", @@ -125,9 +126,11 @@ if ($opt_stage == 0 && ! $opt_use_old_distribution) { system("touch $name"); } + # Fix some file modes in BDB tables that makes life harder. + system("chmod -R u+rw ."); } -safe_cd($ver); +safe_cd("$pwd/$host/$ver"); if ($opt_stage <= 1) { $opt_config_options.=" --with-low-memory" if ($opt_with_low_memory); |