diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-06-01 12:02:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-06-01 12:02:02 (GMT) |
commit | 5937053b54cde66ba71209b74b6d6732275cafec (patch) | |
tree | 39754f557d6db39c9bba9cb4f22b76f85a8527a3 /tools/tcltk-man2html.tcl | |
parent | ca66ff4b66c7c2c37cf104ead999ae2fc8c85747 (diff) | |
parent | 5fee89b1cba2dec073fe621b65f34c480fe15483 (diff) | |
download | tcl-5937053b54cde66ba71209b74b6d6732275cafec.zip tcl-5937053b54cde66ba71209b74b6d6732275cafec.tar.gz tcl-5937053b54cde66ba71209b74b6d6732275cafec.tar.bz2 |
Fix [3bd69eba99a395ee]: 'make dist' fails when tclsh9.0 is on $PATH
Diffstat (limited to 'tools/tcltk-man2html.tcl')
-rwxr-xr-x | tools/tcltk-man2html.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tcltk-man2html.tcl b/tools/tcltk-man2html.tcl index 1ceceb9..d607905 100755 --- a/tools/tcltk-man2html.tcl +++ b/tools/tcltk-man2html.tcl @@ -1,6 +1,6 @@ #!/usr/bin/env tclsh -if {[catch {package require Tcl 8.6} msg]} { +if {[catch {package require Tcl 8.6-} msg]} { puts stderr "ERROR: $msg" puts stderr "If running this script from 'make html', set the\ NATIVE_TCLSH environment\nvariable to point to an installed\ |