Check-in [737166e23a]
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 path for where odie seeks sources
Timelines: family | ancestors | descendants | both | autosetup
Files: files | file ages | folders
SHA1: 737166e23aa583a03dfab0ab3548cc6e45aaff5b
User & Date: hypnotoad 2015-03-24 14:10:53
Context
2015-03-24
15:30
Fix the path for building toadkit check-in: d421d45771 user: hypnotoad tags: autosetup
14:10
Fixed the path for where odie seeks sources check-in: 737166e23a user: hypnotoad tags: autosetup
2015-03-18
21:54
Adding an -x-includes flag for Macosx to point it to where Xquartz stores its includes Typo fix in codebale check-in: f825c3ba37 user: hypnotoad tags: autosetup
Changes
Unified Diff Ignore Whitespace Patch
Changes to scripts/make_basekit.tcl.
17
18
19
20
21
22
23
24
25
26
27
28
if {$::odie(window_system) ne "none"} {
  if { $::odie(platform) eq "windows" } {
    cd [::realpath ${TK_STATIC_SRCPATH}]
    domake tk.res.o
    domake wish.res.o
  }
}
cd [::realpath $::odie(sandbox)/odie/src/toadkit]
puts "Building kits in [pwd]"
source configure.tcl
domake clean
domake install







|




17
18
19
20
21
22
23
24
25
26
27
28
if {$::odie(window_system) ne "none"} {
  if { $::odie(platform) eq "windows" } {
    cd [::realpath ${TK_STATIC_SRCPATH}]
    domake tk.res.o
    domake wish.res.o
  }
}
cd [::realpath $::odie(src_dir)/src/toadkit]
puts "Building kits in [pwd]"
source configure.tcl
domake clean
domake install