Overview
Comment: | Updated to output environment variables set |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
592e72598ff048b36606391adcd1af04 |
User & Date: | rkeene on 2014-07-23 01:17:34 |
Other Links: | manifest | tags |
Context
2014-07-23
| ||
01:27 | Updated to correctly format libtcl libraries check-in: feac557f80 user: rkeene tags: trunk | |
01:17 | Updated to output environment variables set check-in: 592e72598f user: rkeene tags: trunk | |
2014-07-20
| ||
16:15 | Added support for a debug build check-in: 9a27037143 user: rkeene tags: trunk | |
Changes
Modified build/web/process_queue from [1c1dcdc43a] to [78920355a8].
︙ | |||
93 94 95 96 97 98 99 100 101 102 103 104 105 106 | 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 | + + + + + + | catch { file delete "${outfile}.log" } catch { set cmd [list $script $buildinfo(tcl_version) {*}$args] set fd [open "${outfile}.log" w+] puts $fd "Running: export KITCREATOR_PKGS=\"$::env(KITCREATOR_PKGS)\"" if {[info exists ::env(STRIP)]} { puts $fd "Running: export STRIP=\"$::env(STRIP)\"" } puts $fd "Running: $cmd" close $fd } catch { exec {*}$cmd >> "${outfile}.log" 2>@1 } |
︙ |