diff options
author | unknown <monty@hundin.mysql.fi> | 2002-08-18 16:04:26 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-08-18 16:04:26 +0300 |
commit | 457172d99256e68a93ab69eecbef23a3db7ef1c4 (patch) | |
tree | af1548211472940ebe3bad8ee24a4d2ab26f2c92 /Build-tools | |
parent | 36827564d3d8d6f18e13d79bebed75572c21f769 (diff) | |
download | mariadb-git-457172d99256e68a93ab69eecbef23a3db7ef1c4.tar.gz |
Fixed timing problem with rpl000001 replication test.
Fixed configure problems with HPUX and openbsd
SHOW SLAVE STATUS returns empty set if slave is not initialized
SHOW MASTER STATUS returns empty set if binary logging is not enabled.
Fixed shutdown problem on Solaris.
BitKeeper/deleted/.del-set_var.cc~5374527de1955359:
Delete: libmysqld/set_var.cc
BitKeeper/etc/ignore:
added libmysqld/set_var.cc
Build-tools/Do-compile:
Remove warnings from touch during compilation
Docs/manual.texi:
Changelog
client/mysqltest.c:
Added real_sleep command
configure.in:
Fixed type for HPUX10
innobase/configure.in:
Fixed type for openbsd
libmysql/libmysql.c:
Fix for new SHOW SLAVE STATUS
myisam/mi_update.c:
Update key file if using external locking
mysql-test/mysql-test-run.sh:
Safety fix
mysql-test/r/rpl000015.result:
Update for new SHOW SLAVE STATUS
mysql-test/r/rpl_empty_master_crash.result:
Update for new SHOW SLAVE STATUS
mysql-test/t/rpl000001.test:
sleep -> real_sleep to avoid timing problem
sql/mysqld.cc:
Fixed bug with SIGTERM on Solaris
sql/slave.cc:
SHOW SLAVE STATUS returns empty sets if slave is not initialized.
sql/sql_repl.cc:
SHOW MASTER STAT returns empty set if no binary logging.
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index 58bd2e49a38..d262fc82f94 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -118,8 +118,12 @@ if ($opt_stage == 0 && ! $opt_use_old_distribution) safe_system("gunzip < $opt_distribution | $tar xf -"); # Fix file times; This is needed because the time for files may be - # in the future - system("touch timestamp; find . -newer timestamp -print | xargs touch; rm -f timestamp"); + # in the future. The following is done this way to ensure that + # we don't get any errors from xargs touch + system("touch timestamp"); + sleep(2); + system("touch timestamp2"); + system("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); |