wduquette / tcl-quill

Build tool for Tcl/Tk projects
BSD 2-Clause "Simplified" License
10 stars 2 forks source link

Some more corrections for Windows #3

Closed effelsberg closed 10 years ago

effelsberg commented 10 years ago

I found some more places that need corrections. With these in place it is possible to build quill.exe using its own build command (and tclapp) under Windows.

In plat.tcl, GetPathTo teacup:

Need .exe for Windows.

In plat.tcl, GetBaseKit:

Lines like this (switch windows, linux):

set basedir [file dirname [$type tclsh]]

are missing a GetPathTo:

set basedir [file dirname [$type GetPathTo tclsh]]
wduquette commented 10 years ago

The former should be fixed already, in the fix I put in for issue #2. In the latter case, the call should be [$type pathto tclsh]. (At the moment.)