mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Fix typo. Improve interim debugging.
FossilOrigin-Name: e0029bdf20df90abd8b81e5b08133866665b1c87
This commit is contained in:
12
manifest
12
manifest
@ -1,5 +1,5 @@
|
|||||||
C Test\sbuild\sall\ssupported\sconfigurations\sand\splatforms\sduring\sVSIX\stesting.
|
C Fix\stypo.\s\sImprove\sinterim\sdebugging.
|
||||||
D 2016-02-24T23:25:23.355
|
D 2016-02-24T23:31:14.464
|
||||||
F Makefile.in 4e90dc1521879022aa9479268a4cd141d1771142
|
F Makefile.in 4e90dc1521879022aa9479268a4cd141d1771142
|
||||||
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
|
F Makefile.linux-gcc 7bc79876b875010e8c8f9502eb935ca92aa3c434
|
||||||
F Makefile.msc 28fc4ee02333996d31b3602b39eeb8e609a89ce4
|
F Makefile.msc 28fc4ee02333996d31b3602b39eeb8e609a89ce4
|
||||||
@ -1446,11 +1446,11 @@ F vsixtest/Package.appxmanifest 0535b2e6708c44ad45ed7fb1dfd4de5de351dd7a
|
|||||||
F vsixtest/pch.cpp 681cc12ddc215c95fe300ee8a3dde057fa2ec308
|
F vsixtest/pch.cpp 681cc12ddc215c95fe300ee8a3dde057fa2ec308
|
||||||
F vsixtest/pch.h 9d2475a4f6d5c921b86c8f61060b6b04421f1010
|
F vsixtest/pch.h 9d2475a4f6d5c921b86c8f61060b6b04421f1010
|
||||||
F vsixtest/vsixtest.sln 8950e044dd04a07046990d04bf77e60738e2d136
|
F vsixtest/vsixtest.sln 8950e044dd04a07046990d04bf77e60738e2d136
|
||||||
F vsixtest/vsixtest.tcl 0f16064663d4e8362381529a4f7f675f242b7b18
|
F vsixtest/vsixtest.tcl e1f20568f5551ae58f395af6440a3f3b65368682
|
||||||
F vsixtest/vsixtest.vcxproj 15407f0e35e914fecc65ed422ac08b28e52b3e4f
|
F vsixtest/vsixtest.vcxproj 15407f0e35e914fecc65ed422ac08b28e52b3e4f
|
||||||
F vsixtest/vsixtest.vcxproj.filters 443739cb985bb81620dc66f375a845b25debe116
|
F vsixtest/vsixtest.vcxproj.filters 443739cb985bb81620dc66f375a845b25debe116
|
||||||
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
|
F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
|
||||||
P 496e4ac984b2548dd5f2f969cd34656b586cfcfe
|
P cce40a0b8ee792482fb7031113eb190ad316d01a
|
||||||
R 5a3c0879fbd24c05458da7451d8d9c43
|
R 599ba9dab9a4637ded30c8413d19596a
|
||||||
U mistachkin
|
U mistachkin
|
||||||
Z bb333cc3788a57a462cd7d4a3c9c3a93
|
Z a097fb629010575b51e2f4b031c45e27
|
||||||
|
@ -1 +1 @@
|
|||||||
cce40a0b8ee792482fb7031113eb190ad316d01a
|
e0029bdf20df90abd8b81e5b08133866665b1c87
|
@ -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) [file nativename [file join $path vsixtest.sln]]
|
||||||
lappend commands(2) /target:Rebuild
|
lappend commands(2) /target:Rebuild
|
||||||
lappend commands(2) /property:Configuration=%configuration%
|
lappend commands(2) /property:Configuration=%configuration%
|
||||||
lappend commands(2) /property:Platform=%clatform%
|
lappend commands(2) /property:Platform=%platform%
|
||||||
|
|
||||||
lappend commands(2) [appendArgs \
|
lappend commands(2) [appendArgs \
|
||||||
/logger:FileLogger,Microsoft.Build.Engine\;Logfile= \
|
/logger:FileLogger,Microsoft.Build.Engine\;Logfile= \
|
||||||
@ -213,7 +213,7 @@ puts stdout [appendArgs \
|
|||||||
puts stdout [appendArgs \
|
puts stdout [appendArgs \
|
||||||
"Third command is \"" $commands(3) "\"."]
|
"Third command is \"" $commands(3) "\"."]
|
||||||
|
|
||||||
if {0} then {
|
if {1} then {
|
||||||
# eval $commands(1)
|
# eval $commands(1)
|
||||||
|
|
||||||
set platforms [list Win32 x64 ARM]
|
set platforms [list Win32 x64 ARM]
|
||||||
@ -221,9 +221,15 @@ if {0} then {
|
|||||||
|
|
||||||
foreach platform $platforms {
|
foreach platform $platforms {
|
||||||
foreach configuration $configurations {
|
foreach configuration $configurations {
|
||||||
eval [string map [list \
|
puts stdout [string map [list \
|
||||||
%platform% $platform %configuration% \
|
%platform% $platform %configuration% \
|
||||||
$configuration] $commands(2)]
|
$configuration] $commands(2)]
|
||||||
|
|
||||||
|
if {0} then {
|
||||||
|
eval [string map [list \
|
||||||
|
%platform% $platform %configuration% \
|
||||||
|
$configuration] $commands(2)]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user