Check-in [592e72598f]
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:592e72598ff048b36606391adcd1af04f96aeae5
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     93   	catch {
    94     94   		file delete "${outfile}.log"
    95     95   	}
    96     96   
    97     97   	catch {
    98     98   		set cmd [list $script $buildinfo(tcl_version) {*}$args]
    99     99   		set fd [open "${outfile}.log" w+]
          100  +		puts $fd "Running: export KITCREATOR_PKGS=\"$::env(KITCREATOR_PKGS)\""
          101  +
          102  +		if {[info exists ::env(STRIP)]} {
          103  +			puts $fd "Running: export STRIP=\"$::env(STRIP)\""
          104  +		}
          105  +
   100    106   		puts $fd "Running: $cmd"
   101    107   		close $fd
   102    108   	}
   103    109   
   104    110   	catch {
   105    111   		exec {*}$cmd >> "${outfile}.log" 2>@1
   106    112   	}