diff options
author | unknown <venu@myvenu.com> | 2003-04-16 11:49:52 -0700 |
---|---|---|
committer | unknown <venu@myvenu.com> | 2003-04-16 11:49:52 -0700 |
commit | 259cc315a5eb06bd3f48f3fb48142de33af71883 (patch) | |
tree | 10cfb4f3b78b041b764e3783ef2d40f04eeb0d00 /scripts/make_win_src_distribution.sh | |
parent | 472020dc084c597d9c8ca940dc0034e7939a3e76 (diff) | |
download | mariadb-git-259cc315a5eb06bd3f48f3fb48142de33af71883.tar.gz |
Fix broken windows distribution workspace file (libmysql.dsp), which is causing VC IDE to crash while loading
Remove ctype_latin1_de.c from respective dsp files
Fix to make_win_src_distribution.sh to delete all newly added IS Bitkeeper files
VC++Files/libmysql/libmysql.dsp:
Fix the broken file
Diffstat (limited to 'scripts/make_win_src_distribution.sh')
-rwxr-xr-x | scripts/make_win_src_distribution.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/make_win_src_distribution.sh b/scripts/make_win_src_distribution.sh index 9a787080c3e..7fd37a52b30 100755 --- a/scripts/make_win_src_distribution.sh +++ b/scripts/make_win_src_distribution.sh @@ -145,8 +145,7 @@ rm -r -f "$BASE/share/Makefile.am" if [ -d $BASE/SCCS ] then - find $BASE/ -name SCCS -print | xargs rm -r -f - rm -r -f "$BASE/InstallShield/Script Files/SCCS" + find $BASE/ -type d -name SCCS -printf " \"%p\"" | xargs rm -r -f fi mkdir $BASE/Docs $BASE/extra $BASE/include @@ -161,8 +160,8 @@ copy_dir_files() { for arg do print_debug "Copying files from directory '$arg'" cd $SOURCE/$arg/ - for i in *.c *.h *.ih *.i *.ic *.asm \ - README INSTALL* LICENSE + for i in *.c *.h *.ih *.i *.ic *.asm *.def \ + README INSTALL* LICENSE do if [ -f $i ] then |