Differences From Artifact [cb5b693f08]:
- File kitsh/buildsrc/kitsh-0.0/boot.tcl — part of check-in [e2f0284dd2] at 2011-07-05 17:25:22 on branch trunk — Corrected bug in KitDLL where additional interpreters would not get their auto_path adjusted correctly (user: rkeene, size: 5490) [annotate] [blame] [check-ins using]
To Artifact [1c8e83d483]:
- File
kitsh/buildsrc/kitsh-0.0/boot.tcl
— part of check-in
[f8234649a5]
at
2011-07-18 03:02:23
on branch trunk
— Updated to set "starkit::topdir" so that it is always correct, even with KitDLL
Updated mk4vfs zlib compressed seek test to use starkit::topdir (user: rkeene, size: 5608) [annotate] [blame] [check-ins using]
| ︙ | |||
139 140 141 142 143 144 145 146 147 148 149 150 151 152 | 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | + + + + |
# loaded before this is run causing the root VFS to break
catch { clock scan }
}
# load config settings file if present
namespace eval ::vfs { variable tclkit_version 1 }
catch { uplevel #0 [list source [file join $mountpoint config.tcl]] }
# Set-up starkit::topdir correctly
namespace eval ::starkit { variable topdir }
set ::starkit::topdir $mountpoint
# Perform expected initialization
uplevel #0 [list source [file join $tcl_library init.tcl]]
# reset auto_path, so that init.tcl's search outside of tclkit is cancelled
set auto_path $tcl_libPath
|
| ︙ |