# HG changeset patch # User John W. Eaton # Date 1356636516 18000 # Node ID e7bd76ab07103c645edfed0c3a081a10582475c8 # Parent 4b72e7cf4f302133981fe270172bfcd4118fa4ef mk-dist script tweaks diff -r 4b72e7cf4f30 -r e7bd76ab0710 mk-dist --- 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