diff options
author | unknown <wax@kishkin.ru> | 2004-12-14 18:46:55 +0500 |
---|---|---|
committer | unknown <wax@kishkin.ru> | 2004-12-14 18:46:55 +0500 |
commit | 5e603239f9286d3053995b4994a3292a600e514d (patch) | |
tree | 09a7b5e2571fc4f8e2de4cea9e832983faf5b711 /scripts | |
parent | dba80d9cb28f9855e7410c3aacbaa6c8cc0143d2 (diff) | |
download | mariadb-git-5e603239f9286d3053995b4994a3292a600e514d.tar.gz |
corrected mysqltest.dsp
corrected mysql_test_run_new.dsp
added dependency
corrected path of mysql_test_run_new.dsp
fixed wrong code
added my_create_tables.c
removed command_line
fixed #elif
restored NAME_MAX and MAX_FNAME
added create_system_files()
added compare() for windows
added all files of testes in script
added mysql-test in script
BitKeeper/etc/ignore:
Added mysql-4.1.8-win-src.zip to the ignore list
VC++Files/client/mysqltest.dsp:
corrected dsp file
VC++Files/mysql-test/mysql_test_run_new.dsp:
corrected mysql_test_run_new.dsp
VC++Files/mysql.dsw:
added dependency
corrected path of mysql_test_run_new.dsp
client/mysqltest.c:
fixed wrong code
mysql-test/Makefile.am:
added my_create_tables.c
mysql-test/my_manage.c:
removed command_line
fixed #elif
mysql-test/my_manage.h:
restored NAME_MAX and MAX_FNAME
mysql-test/mysql_test_run_new.c:
added create_system_files()
added compare for windows
scripts/make_win_src_distribution.sh:
added all files of testes
added mysql-test
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/make_win_src_distribution.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/make_win_src_distribution.sh b/scripts/make_win_src_distribution.sh index fd7884068ba..a635f266165 100644 --- a/scripts/make_win_src_distribution.sh +++ b/scripts/make_win_src_distribution.sh @@ -189,7 +189,10 @@ copy_dir_files() mkdir $BASE/$arg fi for i in *.c *.cpp *.h *.ih *.i *.ic *.asm *.def \ - README INSTALL* LICENSE + README INSTALL* LICENSE *.inc *.test *.result \ + *.pem Moscow_leap des_key_file *.dat *.000001 \ + *.require *.opt + do if [ -f $i ] then @@ -247,7 +250,7 @@ done # Input directories to be copied recursively # -for i in bdb innobase +for i in bdb innobase mysql-test do copy_dir_dirs $i done |