diff options
author | unknown <reggie@fedora.(none)> | 2005-08-04 10:08:55 -0500 |
---|---|---|
committer | unknown <reggie@fedora.(none)> | 2005-08-04 10:08:55 -0500 |
commit | 2ee03416206449ee38de7e776666abf284329ec3 (patch) | |
tree | b982bdd8f5a433952133b691f82924330929e8b3 /scripts | |
parent | 548ff2a3f3a878428180a862520573780c2f8252 (diff) | |
download | mariadb-git-2ee03416206449ee38de7e776666abf284329ec3.tar.gz |
add support for vcproj and sln files (Visual Studio 2003)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/make_win_src_distribution.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/make_win_src_distribution.sh b/scripts/make_win_src_distribution.sh index c79433f97c1..8183370f220 100644 --- a/scripts/make_win_src_distribution.sh +++ b/scripts/make_win_src_distribution.sh @@ -202,7 +202,7 @@ copy_dir_files() for i in *.c *.cpp *.h *.ih *.i *.ic *.asm *.def *.hpp *.dsp *.dsw \ README INSTALL* LICENSE AUTHORS NEWS ChangeLog \ *.inc *.test *.result *.pem Moscow_leap des_key_file \ - *.dat *.000001 *.require *.opt + *.vcproj *.sln *.dat *.000001 *.require *.opt do if [ -f $i ] then @@ -343,7 +343,9 @@ mv $BASE/sql/sql_yacc.cpp-new $BASE/sql/sql_yacc.cpp # Search the tree for plain text files and adapt the line end marker # find $BASE \( -name "*.dsp" -o -name "*.dsw" -o -name "*.cnf" -o -name "*.ini" \ - -o -name COPYING -o -name ChangeLog -o -name EXCEPTIONS-CLIENT -o -name "INSTALL*" -o -name LICENSE -o -name "README*" \) -type f -print \ + -o -name COPYING -o -name ChangeLog -o -name EXCEPTIONS-CLIENT + -o -name "INSTALL*" -o -name LICENSE -o -name "README*" + -o -name "*.vcproj" -o -name "*.sln" \) -type f -print \ | while read v do unix_to_dos $v |