diff options
author | unknown <monty@hundin.mysql.fi> | 2002-08-23 02:48:52 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-08-23 02:48:52 +0300 |
commit | 1a42c001cf84b20e7a1a3fad3d6fb55ae415d23d (patch) | |
tree | 576302ffedeaa77cae39a3f3d50ab786b9dcddad /Build-tools | |
parent | 2aadd70c2502181b9db982c98e48f38cec11071f (diff) | |
download | mariadb-git-1a42c001cf84b20e7a1a3fad3d6fb55ae415d23d.tar.gz |
Portabilityfix in mysqladmin.c
Fix when using --localstatedir
Cleaned up mysql.server
Build-tools/Do-compile:
Remove test file timestamp2
Docs/manual.texi:
Changelog
client/mysqladmin.c:
Portability fix
scripts/make_binary_distribution.sh:
Fix for mysql.server
sql/mysqld.cc:
Fix when using --localstatedir
support-files/mysql.server.sh:
More comments for usage of 'basedir'
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index 04e905cb834..a4156f6ac98 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -123,7 +123,7 @@ if ($opt_stage == 0 && ! $opt_use_old_distribution) system("touch timestamp"); sleep(2); system("touch timestamp2"); - system("find . -newer timestamp -print | xargs touch; rm -f timestamp"); + system("find . -newer timestamp -print | xargs touch; rm -f timestamp timestamp2"); sleep(2); # Ensure that files we don't want to rebuild are newer than other files safe_cd($ver); |