diff options
author | unknown <monty@hundin.mysql.fi> | 2002-08-23 15:14:01 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2002-08-23 15:14:01 +0300 |
commit | 41abdd90cc3bae76131022f99090d259bf111426 (patch) | |
tree | bca567751e08d245abe17e089c4c522b91c2dbe8 /Build-tools | |
parent | 915aaa1805b4828196e3e96601f58b460122e7c2 (diff) | |
download | mariadb-git-41abdd90cc3bae76131022f99090d259bf111426.tar.gz |
Changed relay_log_space to ulonglong
Removed compiler warnings.
Build-tools/Do-compile:
Simple cleanup
include/mysql.h:
Use #include "" instead of include <>
mysql-test/t/innodb_handler.test:
Documented test
Change to be runnable from mysql
sql/mini_client.cc:
Removed dead code
sql/mysqld.cc:
Changed relay_log_space to ulonglong
sql/slave.cc:
Changed relay_log_space to ulonglong
Removed dead code
sql/slave.h:
Changed relay_log_space to ulonglong
sql/sql_acl.cc:
Removed not used variables
sql/sql_base.cc:
Removed not used variables
sql/sql_cache.cc:
Removed not used variables
sql/sql_select.cc:
Removed not used variables
vio/vio.c:
Re-order include files to remove compiler warnings
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-compile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index a4156f6ac98..b41733394ab 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -123,7 +123,9 @@ 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 timestamp2"); + system("find . -newer timestamp -print | xargs touch"); + unlink("timestamp"); + unlink("timestamp2"); sleep(2); # Ensure that files we don't want to rebuild are newer than other files safe_cd($ver); |