diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-04-12 15:24:08 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-04-12 15:24:08 (GMT) |
commit | 37907b7e83bac9c787125b72693d4085c8cdcd24 (patch) | |
tree | df02e21b59b990021a36111383481c05f3d249c5 /unix/Makefile.in | |
parent | b10eea39c1023da6b2f19d3d5bafa13482fe5300 (diff) | |
parent | 4ff3c3cf90b83dde3d417f6aea0e88e8f15009c5 (diff) | |
download | tcl-37907b7e83bac9c787125b72693d4085c8cdcd24.zip tcl-37907b7e83bac9c787125b72693d4085c8cdcd24.tar.gz tcl-37907b7e83bac9c787125b72693d4085c8cdcd24.tar.bz2 |
Merge 8.6. Don't change ActiveCodePage on Windows (yet), that's for 9.0
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 4a2c395..9249178 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -927,7 +927,7 @@ runtest: ${TCLTEST_EXE} # Useful target for running the test suite with an unwritable current # directory... ro-test: ${TCLTEST_EXE} - echo 'exec chmod -w .;package require tcltest;tcltest::temporaryDirectory /tmp;source ../tests/all.tcl;exec chmod +w .' | $(SHELL_ENV) ./${TCLTEST_EXE} + echo 'exec chmod -w .;package require tcltest;tcltest::temporaryDirectory /tmp;source -encoding utf-8 ../tests/all.tcl;exec chmod +w .' | $(SHELL_ENV) ./${TCLTEST_EXE} # The following target generates the shared libraries in dltest/ that are used # for testing; they are included as part of the "tcltest" target (via the @@ -2152,10 +2152,10 @@ $(GENERIC_DIR)/tclOOScript.h: $(TOOL_DIR)/tclOOScript.tcl @echo "This warning can be safely ignored, do not report as a bug!" genstubs: - $(NATIVE_TCLSH) $(TOOL_DIR)/genStubs.tcl $(GENERIC_DIR) \ + $(NATIVE_TCLSH) -encoding utf-8 $(TOOL_DIR)/genStubs.tcl $(GENERIC_DIR) \ $(GENERIC_DIR)/tcl.decls $(GENERIC_DIR)/tclInt.decls \ $(GENERIC_DIR)/tclTomMath.decls - $(NATIVE_TCLSH) $(TOOL_DIR)/genStubs.tcl $(GENERIC_DIR) \ + $(NATIVE_TCLSH) -encoding utf-8 $(TOOL_DIR)/genStubs.tcl $(GENERIC_DIR) \ $(GENERIC_DIR)/tclOO.decls genscript: |