1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix typo. Improve interim debugging.

FossilOrigin-Name: e0029bdf20df90abd8b81e5b08133866665b1c87
This commit is contained in:
mistachkin
2016-02-24 23:31:14 +00:00
parent 78007b2f22
commit 5dad68d3c7
3 changed files with 16 additions and 10 deletions

View File

@ -181,7 +181,7 @@ set commands(2) [list exec [file nativename $msBuild]]
lappend commands(2) [file nativename [file join $path vsixtest.sln]]
lappend commands(2) /target:Rebuild
lappend commands(2) /property:Configuration=%configuration%
lappend commands(2) /property:Platform=%clatform%
lappend commands(2) /property:Platform=%platform%
lappend commands(2) [appendArgs \
/logger:FileLogger,Microsoft.Build.Engine\;Logfile= \
@ -213,7 +213,7 @@ puts stdout [appendArgs \
puts stdout [appendArgs \
"Third command is \"" $commands(3) "\"."]
if {0} then {
if {1} then {
# eval $commands(1)
set platforms [list Win32 x64 ARM]
@ -221,9 +221,15 @@ if {0} then {
foreach platform $platforms {
foreach configuration $configurations {
eval [string map [list \
puts stdout [string map [list \
%platform% $platform %configuration% \
$configuration] $commands(2)]
if {0} then {
eval [string map [list \
%platform% $platform %configuration% \
$configuration] $commands(2)]
}
}
}