Update of /cvsroot/wxlua/website/download
In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv29855/website/download
Modified Files:
fixeol.sh
Log Message:
clean up the script a little, add *.vcproj
Index: fixeol.sh
===================================================================
RCS file: /cvsroot/wxlua/website/download/fixeol.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** fixeol.sh 4 May 2007 19:09:21 -0000 1.2
--- fixeol.sh 1 Jul 2007 00:17:44 -0000 1.3
***************
*** 5,21 ****
dir=`pwd`/wxLua
-
- # NOT NECESSARY AS unix2dos will already print out the names of the processed files
- # for f in `find .|grep ".dsp"`; do echo $f; done
- # for f in `find .|grep ".dsw"`; do echo $f; done
- # for f in `find .|grep "makefile.vc"`; do echo $f; done
- # for f in `find .|grep "makefile.wat"`; do echo $f; done
- # for f in `find .|grep "makefile.bcc"`; do echo $f; done
-
# do the UNIX -> DOS conversion
! for f in `find $dir|grep ".dsp"`; do $cmd $f; done
! for f in `find $dir|grep ".dsw"`; do $cmd $f; done
! for f in `find $dir|grep ".sln"`; do $cmd $f; done
! for f in `find $dir|grep "makefile.vc"`; do $cmd $f; done
! for f in `find $dir|grep "makefile.wat"`; do $cmd $f; done
! for f in `find $dir|grep "makefile.bcc"`; do $cmd $f; done
--- 5,14 ----
dir=`pwd`/wxLua
# do the UNIX -> DOS conversion
! for f in `find $dir -name "*.dsp"`; do $cmd $f; done
! for f in `find $dir -name "*.dsw"`; do $cmd $f; done
! for f in `find $dir -name "*.sln"`; do $cmd $f; done
! for f in `find $dir -name "*.vcproj"`; do $cmd $f; done
! for f in `find $dir -name "makefile.vc"`; do $cmd $f; done
! for f in `find $dir -name "makefile.wat"`; do $cmd $f; done
! for f in `find $dir -name "makefile.bcc"`; do $cmd $f; done
|