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 139 # loaded before this is run causing the root VFS to break 140 140 catch { clock scan } 141 141 } 142 142 143 143 # load config settings file if present 144 144 namespace eval ::vfs { variable tclkit_version 1 } 145 145 catch { uplevel #0 [list source [file join $mountpoint config.tcl]] } 146 + 147 + # Set-up starkit::topdir correctly 148 + namespace eval ::starkit { variable topdir } 149 + set ::starkit::topdir $mountpoint 146 150 147 151 # Perform expected initialization 148 152 uplevel #0 [list source [file join $tcl_library init.tcl]] 149 153 150 154 # reset auto_path, so that init.tcl's search outside of tclkit is cancelled 151 155 set auto_path $tcl_libPath 152 156