# HG changeset patch # User jwe # Date 791743676 0 # Node ID 2e10146f7f72a069db5516790e62a650650a47f8 # Parent 54abf1b3a8e9a0ce7ded09837a9e66fe5b87be2f [project @ 1995-02-02 16:47:56 by jwe] diff -r 54abf1b3a8e9 -r 2e10146f7f72 doinstall.sh --- a/doinstall.sh Thu Feb 02 00:30:14 1995 +0000 +++ b/doinstall.sh Thu Feb 02 16:47:56 1995 +0000 @@ -165,8 +165,8 @@ echo "installing function files in $fcnfiledir" ( cd scripts - ../mkinstalldirs `find . -type d | sed -e 's,^\./,,' -e "s,^,$fcnfiledir/,"` - for f in `find . -name '*.m' -o -name octaverc` + ../mkinstalldirs `find . -type d -print | sed -e 's,^\./,,' -e "s,^,$fcnfiledir/,"` + for f in `find . \( -name '*.m' -o -name octaverc \) -print` do cp $f $fcnfiledir/$f chmod 644 $fcnfiledir/$f @@ -174,7 +174,7 @@ echo "installing image files in $imagedir" ( cd scripts - for f in `find . -name '*.img'` + for f in `find . -name '*.img' -print` do file=`basename $f` cp $f $imagedir/$file