From: Václav Slavík Date: Thu, 25 Nov 2004 11:40:34 +0000 (+0000) Subject: updated to generate ZIP files with DOS line endings X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/034e3041693f90324cfa4d282ef44e6063738d83 updated to generate ZIP files with DOS line endings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30780 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/build/script/rebuild-makefiles.sh b/build/script/rebuild-makefiles.sh index 5cb22fc511..ec128f53d4 100644 --- a/build/script/rebuild-makefiles.sh +++ b/build/script/rebuild-makefiles.sh @@ -36,7 +36,8 @@ do_package() if test $archtype = tar ; then tar czf ../archives/wx-mk-${format}-${CURDATE}.tar.gz $files elif test $archtype = zip ; then - zip -q -9 ../archives/wx-mk-${format}-${CURDATE}.zip $files + zip -l -q -9 ../archives/wx-mk-${format}-${CURDATE}.zip $files + # (-l translates to DOS line endings) fi cd ..