aboutsummaryrefslogtreecommitdiff
path: root/autosetup/test-tclsh
diff options
context:
space:
mode:
Diffstat (limited to 'autosetup/test-tclsh')
-rw-r--r--autosetup/test-tclsh6
1 files changed, 2 insertions, 4 deletions
diff --git a/autosetup/test-tclsh b/autosetup/test-tclsh
index 3fdebb2..75126d2 100644
--- a/autosetup/test-tclsh
+++ b/autosetup/test-tclsh
@@ -5,12 +5,10 @@
if {[catch {info version} version] == 0} {
# This is Jim Tcl
- if {$version >= 0.70} {
+ if {$version >= 0.72} {
# Ensure that regexp works
regexp (a.*?) a
-
- # Older versions of jimsh may return a relative path for [info nameofexecutable]
- puts [file join [pwd] [info nameofexecutable]]
+ puts [info nameofexecutable]
exit 0
}
} elseif {[catch {info tclversion} version] == 0} {