changeset 2930:e7bd76ab0710

mk-dist script tweaks
author John W. Eaton <jwe@octave.org>
date Thu, 27 Dec 2012 14:28:36 -0500
parents 4b72e7cf4f30
children 5f923fdabefe
files mk-dist
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mk-dist	Wed Dec 26 16:42:35 2012 -0500
+++ b/mk-dist	Thu Dec 27 14:28:36 2012 -0500
@@ -29,9 +29,13 @@
 cd $TOPDIR/native-tools/usr
 tar -c -h -X $TOPDIR/excluded-native-files -f - . | ( cd $TOPDIR/dist/octave ; tar xpf - )
 
+echo "making all files writable by user..."
+chmod -R u+w $TOPDIR/dist/octave
+
+echo "stripping files..."
 cd $TOPDIR/dist/octave
 for f in $(find . -name '*.dll'); do
-  echo stripping $f...
+  echo "  $f"
   $STRIP $f
 done