diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-06-13 10:24:45 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-06-13 10:24:45 (GMT) |
commit | 6c9b8bdd74ad3b776f15340267d4173afb1985af (patch) | |
tree | e6183f95eeb80deb32e98d73701bd79a33908798 /tools/tcltk-man2html.tcl | |
parent | 287867e4b0d766d1e514f94ed88ff084f3aa8e06 (diff) | |
download | tcl-6c9b8bdd74ad3b776f15340267d4173afb1985af.zip tcl-6c9b8bdd74ad3b776f15340267d4173afb1985af.tar.gz tcl-6c9b8bdd74ad3b776f15340267d4173afb1985af.tar.bz2 |
* tools/tcltk-man2html.tcl: [Bug 3015327]: Add hack to stop Itcl C
docs from interfering with Tcl docs during HTML generation. This is a
band-aid since it just prevents the generation of the HTML version of
the Itcl C docs (since they're not installed during 'make install')
rather than improving the code to not have problems with the clash
between two Object.3 files.
Diffstat (limited to 'tools/tcltk-man2html.tcl')
-rwxr-xr-x | tools/tcltk-man2html.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/tcltk-man2html.tcl b/tools/tcltk-man2html.tcl index fd8a258..b497afb 100755 --- a/tools/tcltk-man2html.tcl +++ b/tools/tcltk-man2html.tcl @@ -18,9 +18,9 @@ package require Tcl 8.6 # Copyright (c) 1995-1997 Roger E. Critchlow Jr # Copyright (c) 2004-2010 Donal K. Fellows # -# CVS: $Id: tcltk-man2html.tcl,v 1.46 2010/02/10 23:17:07 dkf Exp $ +# CVS: $Id: tcltk-man2html.tcl,v 1.47 2010/06/13 10:24:45 dkf Exp $ -regexp {\d+\.\d+} {$Revision: 1.46 $} ::Version +regexp {\d+\.\d+} {$Revision: 1.47 $} ::Version set ::CSSFILE "docs.css" ## @@ -918,7 +918,7 @@ try { "The C functions which a Tcl extended C program may use."] \ [plus-base $build_tk $tkdir/doc/*.3 {Tk Library} TkLib \ "The additional C functions which a Tk extended C program may use."] \ - {*}[plus-pkgs 3 {*}$packageDirNameMap] + {*}[plus-pkgs 3 {*}[dict remove $packageDirNameMap itcl]] } on error {msg opts} { # On failure make sure we show what went wrong. We're not supposed # to get here though; it represents a bug in the script. |