diff mk-dist @ 2954:f0fe5698ee67

also strip exe files
author John W. Eaton <jwe@octave.org>
date Fri, 11 Jan 2013 12:57:08 -0500
parents 1afd21db3bf1
children dfa81fbfc1f5
line wrap: on
line diff
--- a/mk-dist	Thu Jan 10 17:42:30 2013 -0500
+++ b/mk-dist	Fri Jan 11 12:57:08 2013 -0500
@@ -56,11 +56,12 @@
 
 echo "stripping files..."
 cd $TOPDIR/dist/octave
-for f in $(find . -name '*.dll'); do
+for f in $(find . -name '*.dll' -o -name '*.exe'); do
   echo "  $f"
   $STRIP $f
 done
 
 echo "creating tar file..."
 cd $TOPDIR/dist
-tar -c -j -f octave.tar.bz2 octave
+#tar -c -j -f octave.tar.bz2 octave
+zip -q -9 -r octave.zip octave