Differences From Artifact [5bb6ad9ccb]:
- File kitsh/buildsrc/kitsh-0.0/installvfs.tcl — part of check-in [ad6d2d103e] at 2013-09-24 22:18:12 on branch tcl-8.6.1-MinGW-Win32 — Fix Win32 portability issue in the VFS installation script regarding the 'null' device name. (user: mistachkin, size: 2372) [annotate] [blame] [check-ins using] [more...]
To Artifact [ea792ed6a5]:
- File kitsh/buildsrc/kitsh-0.0/installvfs.tcl — part of check-in [37850a79ad] at 2013-10-31 02:43:32 on branch winFixes — More fixes to make native Windows builds work. (user: mistachkin, size: 2506) [annotate] [blame] [check-ins using]
| ︙ | |||
9 10 11 12 13 14 15 16 17 18 19 20 21 22 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | + + + + + |
}
set kitfile [lindex $argv 0]
set vfsdir [lindex $argv 1]
if {[lindex $argv 2] != ""} {
set opt_compression [lindex $argv 2]
}
# On Windows, use the ".exe" file extension
if {$tcl_platform(platform) eq "windows"} {
set kitfile [file rootname $kitfile].exe
}
# Determine what storage mechanism is being used
set fd [open Makefile.common r]
set data [read $fd]
close $fd
if {[string match "*KIT_STORAGE_ZIP*" $data]} {
|
| ︙ |