Check-in [5e24e26760]
Not logged in
Bounty program for improvements to Tcl and certain Tcl packages.
Tcl 2018 Conference, Houston/TX, US, Oct 15-19
Send your abstracts to tclconference@googlegroups.com or submit via the online form
by Aug 20.

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Fixed the "install sherpa" command
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 5e24e26760ac8d1e7092159e5f8f281096489bd5
User & Date: hypnotoad 2015-06-01 18:27:09
Context
2015-08-10
13:20
Updates to the window build process check-in: 572d26a300 user: hypnotoad tags: trunk
2015-06-01
18:27
Fixed the "install sherpa" command check-in: 5e24e26760 user: hypnotoad tags: trunk
2015-05-19
15:35
Integrating the autosetup feature branch into trunk check-in: 80e134d2db user: hypnotoad tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to scripts/make_sherpa.tcl.
41
42
43
44
45
46
47
48
49
set SHERPA_SRCPATH $::odie(src_dir)/../sherpa
if {$::tcl_platform(platform) eq "windows"} {
  file copy -force ${SHERPA_SRCPATH}/sherpa.cmd $::odie(prefix)/bin/sherpa.cmd
  file copy -force ${SHERPA_SRCPATH}/sherpa.tcl $::odie(prefix)/bin/sherpa.tcl
  file copy -force ${SHERPA_SRCPATH}/sherpa.tcl $::odie(prefix)/bin/sherpa
} else {
  file delete $::odie(prefix)/bin/sherpa
  file link ${SHERPA_SRCPATH}/sherpa.tcl $::odie(prefix)/bin/sherpa
}







|

41
42
43
44
45
46
47
48
49
set SHERPA_SRCPATH $::odie(src_dir)/../sherpa
if {$::tcl_platform(platform) eq "windows"} {
  file copy -force ${SHERPA_SRCPATH}/sherpa.cmd $::odie(prefix)/bin/sherpa.cmd
  file copy -force ${SHERPA_SRCPATH}/sherpa.tcl $::odie(prefix)/bin/sherpa.tcl
  file copy -force ${SHERPA_SRCPATH}/sherpa.tcl $::odie(prefix)/bin/sherpa
} else {
  file delete $::odie(prefix)/bin/sherpa
  file link -symbolic $::odie(prefix)/bin/sherpa ${SHERPA_SRCPATH}/sherpa.tcl 
}