aboutsummaryrefslogtreecommitdiff
path: root/autosetup
diff options
context:
space:
mode:
authorstephan <stephan@noemail.net>2025-04-25 11:27:13 +0000
committerstephan <stephan@noemail.net>2025-04-25 11:27:13 +0000
commitef90c4209cefa1391c7217aee5978a53b3b8152b (patch)
treecf2fbeb76aa94a24a176d196321cc8836ee745ff /autosetup
parentd3b39b18d09df4c780e72190f68d11b776bcc4a7 (diff)
downloadsqlite-ef90c4209cefa1391c7217aee5978a53b3b8152b.tar.gz
sqlite-ef90c4209cefa1391c7217aee5978a53b3b8152b.zip
Teaish internal API tweaks and ensure that -encoding utf-8 is used when source'ing test scripts.
FossilOrigin-Name: f878f578f8fac95a939e3eabe8b64d5627d2ccd98de1e28081b9bca42ffee027
Diffstat (limited to 'autosetup')
-rw-r--r--autosetup/proj.tcl4
1 files changed, 2 insertions, 2 deletions
diff --git a/autosetup/proj.tcl b/autosetup/proj.tcl
index 1ccc63280..3ebb5f250 100644
--- a/autosetup/proj.tcl
+++ b/autosetup/proj.tcl
@@ -1760,13 +1760,13 @@ proc proj-validate-no-unresolved-ats {args} {
}
#
-# @proj-first-found fileList tgtVar
+# @proj-first-found tgtVar fileList
#
# Searches $fileList for an existing file. If one is found, its name is
# assigned to tgtVar and 1 is returned, else tgtVar is not modified
# and 0 is returned.
#
-proc proj-first-file-found {fileList tgtVar} {
+proc proj-first-file-found {tgtVar fileList} {
upvar $tgtVar tgt
foreach f $fileList {
if {[file exists $f]} {