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

Minor configure-internal cleanups to support the autosetup port of the TEA build.

FossilOrigin-Name: 244c2b75c10c68bc0499d60b707a925836a4b9d490813785587522109fc11fe2
This commit is contained in:
stephan
2025-04-04 13:08:43 +00:00
parent 29b496a2d5
commit 283d0ee4c6
5 changed files with 16 additions and 16 deletions

View File

@ -2088,12 +2088,11 @@ proc sqlite-determine-codegen-tcl {} {
}; # sqlite-determine-codegen-tcl
########################################################################
# Runs sqlite-check-tcl and, if $alsoCheckCodeGen is true,
# sqlite-determine-codegen-tcl (intended only for the canonical
# build).
proc sqlite-handle-tcl {{alsoCheckCodeGen 1}} {
# Runs sqlite-check-tcl and, if this is the canonical build,
# sqlite-determine-codegen-tcl.
proc sqlite-handle-tcl {} {
sqlite-check-tcl
if {$alsoCheckCodeGen} {
if {"canonical" eq $::sqliteConfig(build-mode)} {
msg-result "TCL for code generation: [sqlite-determine-codegen-tcl]"
}
}