Mercurial > hg > mxe
changeset 3111: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 +++ b/mk-dist @@ -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