--- ray/src/util/tradinstall.csh 2003/02/22 02:07:30 2.7 +++ ray/src/util/tradinstall.csh 2015/10/20 15:51:58 2.9 @@ -1,5 +1,5 @@ #!/bin/csh -fe -# RCSid: $Id: tradinstall.csh,v 2.7 2003/02/22 02:07:30 greg Exp $ +# RCSid: $Id: tradinstall.csh,v 2.9 2015/10/20 15:51:58 greg Exp $ # Install correct version of trad for wish or wish4.0 # set instdir = $1 @@ -9,7 +9,7 @@ set TLIBFILES = ( *[a-z].tcl *.hlp trad.icon tclIndex set TDIFFS = (`ls | sed -n 's/3\.6\.tcl$//p'`) -set WISHCOMS = ( wish4.{3,2,1,0} wish8.0 wish ) +set WISHCOMS = ( wish4.{3,2,1,0} wish8.{6,5,4,3,2,1,0} wish ) foreach w ( $WISHCOMS ) foreach d ($path) @@ -24,10 +24,9 @@ if (! $?wishcom) then echo "Cannot find wish executable in current path -- trad not installed." exit 1 endif -# if ( $wishcom:t == wish ) then -# set wishcom="$wishcom -f" -# set oldwish -# endif +if ("`file $wishcom`" =~ "*shell script*") then + set wishcom="/bin/sh" +endif echo "Installing trad using $wishcom" @@ -39,9 +38,3 @@ if (! -d $libdir) then endif (cd $libdir ; rm -f $TLIBFILES) cp $TLIBFILES $libdir -if ($?oldwish) then - foreach i ($TDIFFS) - rm -f $libdir/$i.tcl - cp ${i}3.6.tcl $libdir/$i.tcl - end -endif