summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2023-05-24 15:18:05 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2023-05-24 15:18:05 (GMT)
commitc7771a763e2451560f1667170fba99a679e1e9eb (patch)
treef69f8d14663fb1a9942f405ac45b74499c3a48b9 /win
parent6c1bdd15d6fabcc595c0fefdb9994800f21cf07d (diff)
downloadtcl-c7771a763e2451560f1667170fba99a679e1e9eb.zip
tcl-c7771a763e2451560f1667170fba99a679e1e9eb.tar.gz
tcl-c7771a763e2451560f1667170fba99a679e1e9eb.tar.bz2
Enhance html generation, so it can handle the "©" copy-sign as well
Diffstat (limited to 'win')
-rw-r--r--win/Makefile.in2
-rw-r--r--win/makefile.vc2
2 files changed, 2 insertions, 2 deletions
diff --git a/win/Makefile.in b/win/Makefile.in
index 6c92749..b282452 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -974,7 +974,7 @@ runtest: tcltest
# `make shell SCRIPT=foo.tcl`
shell: binaries
@TCL_LIBRARY="$(LIBRARY_DIR)"; export TCL_LIBRARY; \
- $(WINE) ./$(TCLSH) $(SCRIPT)
+ $(WINE) ./$(TCLSH) -encoding utf-8 $(SCRIPT)
# This target can be used to run tclsh inside either gdb or insight
gdb: binaries
diff --git a/win/makefile.vc b/win/makefile.vc
index d1f4ef3..b1a8b6a 100644
--- a/win/makefile.vc
+++ b/win/makefile.vc
@@ -676,7 +676,7 @@ CHMFILE=$(HTMLDIR)\$(HTMLBASE).chm
htmlhelp: chmsetup $(CHMFILE)
$(CHMFILE): $(DOCDIR)\*
- @$(TCLSH) $(TOOLSDIR)\tcltk-man2html.tcl "--htmldir=$(HTMLDIR)"
+ @$(TCLSH) -encoding utf-8 $(TOOLSDIR)\tcltk-man2html.tcl "--htmldir=$(HTMLDIR)"
@echo Compiling HTML help project
-"$(HHC)" <<$(HHPFILE) >NUL
[OPTIONS]