21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
close $fd
if {[string match "*KIT_STORAGE_ZIP*" $data]} {
set tclKitStorage zip
}
if {[string match "*KIT_STORAGE_MK4*" $data]} {
set tclKitStorage mk4
}
if {![info exists tclKitStorage]} {
if {[string match "*KIT_INCLUDES_MK4TCL*" $data]} {
set tclKitStorage mk4
} else {
set tclKitStorage zip
|
>
>
>
|
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
close $fd
if {[string match "*KIT_STORAGE_ZIP*" $data]} {
set tclKitStorage zip
}
if {[string match "*KIT_STORAGE_MK4*" $data]} {
set tclKitStorage mk4
}
if {[string match "*KIT_STORAGE_CVFS*" $data]} {
set tclKitStorage cvfs
}
if {![info exists tclKitStorage]} {
if {[string match "*KIT_INCLUDES_MK4TCL*" $data]} {
set tclKitStorage mk4
} else {
set tclKitStorage zip
|