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 | b6a4515785caed80805d00b2d77e5fa197aa9476 (patch) | |
tree | 576302ffedeaa77cae39a3f3d50ab786b9dcddad /Build-tools/Do-compile | |
parent | 0833663fff0d01fe26e997abdd681bd0d512cd11 (diff) | |
download | mariadb-git-b6a4515785caed80805d00b2d77e5fa197aa9476.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/Do-compile')
-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); |