Browse Source

fix make.tcl project error with _BUILDCOPY

master
Julian Noble 1 week ago
parent
commit
952b88f4e0
  1. 6
      src/make.tcl
  2. 6
      src/project_layouts/custom/_project/punk.basic/src/make.tcl
  3. 6
      src/project_layouts/custom/_project/punk.project-0.1/src/make.tcl
  4. 6
      src/project_layouts/custom/_project/punk.shell-0.1/src/make.tcl

6
src/make.tcl

@ -2700,12 +2700,12 @@ foreach runtimefile $runtimes {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable) #assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW #use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} { if {$::tcl_platform(platform) eq "windows"} {
set useruntime [file tail $runtimefile]_BUILDCOPY.exe set useruntimefile [file tail $runtimefile]_BUILDCOPY.exe
} else { } else {
set useruntime ${runtimefile}_BUILDCOPY set useruntimefile ${runtimefile}_BUILDCOPY
} }
} else { } else {
set useruntime $runtimefile set useruntimefile $runtimefile
} }
set basedir $buildfolder set basedir $buildfolder

6
src/project_layouts/custom/_project/punk.basic/src/make.tcl

@ -2700,12 +2700,12 @@ foreach runtimefile $runtimes {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable) #assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW #use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} { if {$::tcl_platform(platform) eq "windows"} {
set useruntime [file tail $runtimefile]_BUILDCOPY.exe set useruntimefile [file tail $runtimefile]_BUILDCOPY.exe
} else { } else {
set useruntime ${runtimefile}_BUILDCOPY set useruntimefile ${runtimefile}_BUILDCOPY
} }
} else { } else {
set useruntime $runtimefile set useruntimefile $runtimefile
} }
set basedir $buildfolder set basedir $buildfolder

6
src/project_layouts/custom/_project/punk.project-0.1/src/make.tcl

@ -2700,12 +2700,12 @@ foreach runtimefile $runtimes {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable) #assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW #use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} { if {$::tcl_platform(platform) eq "windows"} {
set useruntime [file tail $runtimefile]_BUILDCOPY.exe set useruntimefile [file tail $runtimefile]_BUILDCOPY.exe
} else { } else {
set useruntime ${runtimefile}_BUILDCOPY set useruntimefile ${runtimefile}_BUILDCOPY
} }
} else { } else {
set useruntime $runtimefile set useruntimefile $runtimefile
} }
set basedir $buildfolder set basedir $buildfolder

6
src/project_layouts/custom/_project/punk.shell-0.1/src/make.tcl

@ -2700,12 +2700,12 @@ foreach runtimefile $runtimes {
#assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable) #assume it's a mounted tclkit (because tcl kits mount in same place as their underlying path and mask the executable)
#use the BUILDCOPY created above - REVIEW #use the BUILDCOPY created above - REVIEW
if {$::tcl_platform(platform) eq "windows"} { if {$::tcl_platform(platform) eq "windows"} {
set useruntime [file tail $runtimefile]_BUILDCOPY.exe set useruntimefile [file tail $runtimefile]_BUILDCOPY.exe
} else { } else {
set useruntime ${runtimefile}_BUILDCOPY set useruntimefile ${runtimefile}_BUILDCOPY
} }
} else { } else {
set useruntime $runtimefile set useruntimefile $runtimefile
} }
set basedir $buildfolder set basedir $buildfolder

Loading…
Cancel
Save