diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-04 10:22:42 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-03-04 10:22:42 (GMT) |
| commit | c76d504018fce2828c5aff6c0d71f4508956cd90 (patch) | |
| tree | d47c6cc8fa3ce98a7853d8aba872fa524d838eb6 | |
| parent | 3e363b51d5cbb58cfba8d6375fe9190fd40f89dc (diff) | |
| download | tcl-c76d504018fce2828c5aff6c0d71f4508956cd90.zip tcl-c76d504018fce2828c5aff6c0d71f4508956cd90.tar.gz tcl-c76d504018fce2828c5aff6c0d71f4508956cd90.tar.bz2 | |
Small (related) fix to handling of TCL_MODULE_PATH: It's a Tcl list too, so it could contain '{'/'}'
| -rw-r--r-- | unix/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 7619afc..17057e4 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -979,7 +979,7 @@ install-libraries: libraries done @if [ -n "$(TCL_MODULE_PATH)" -a -f $(TOP_DIR)/library/tm.tcl ] ; then \ echo "Customizing tcl module path"; \ - echo "if {![interp issafe]} { ::tcl::tm::roots {$(TCL_MODULE_PATH)} }" >> \ + echo "if {![interp issafe]} { ::tcl::tm::roots [list $(TCL_MODULE_PATH)] }" >> \ "$(SCRIPT_INSTALL_DIR)/tm.tcl"; \ fi |
