1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
***************
*** 1,6 ****
- #/bin/sh
# Next line starts the Tcl/Tk wish: \
- exec wish $0 $*
if [catch {package require Tk 8}] {
puts "ts requires Tcl/Tk 8.0 or above."
--- 1,6 ----
+ #!/bin/sh
# Next line starts the Tcl/Tk wish: \
+ exec wish8.0 $0 $*
if [catch {package require Tk 8}] {
puts "ts requires Tcl/Tk 8.0 or above."
***************
*** 10,16 ****
#################################################################
# Set the TS base directory in the following line
- set TS_BASE /usr/local/lib/ts-9812
# Do you wish debug information
set params(debug) 0
##################################################################
--- 10,16 ----
#################################################################
# Set the TS base directory in the following line
+ set TS_BASE /usr/lib/ts
# Do you wish debug information
set params(debug) 0
##################################################################
|