changeset 2954:f0fe5698ee67

also strip exe files
author John W. Eaton <jwe@octave.org>
date Fri, 11 Jan 2013 12:57:08 -0500
parents 9ee646095047
children 19aa16ec87c0
files mk-dist
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
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