summaryrefslogtreecommitdiff
path: root/tool/mksqlite3h.tcl
diff options
context:
space:
mode:
Diffstat (limited to 'tool/mksqlite3h.tcl')
-rw-r--r--tool/mksqlite3h.tcl9
1 files changed, 7 insertions, 2 deletions
diff --git a/tool/mksqlite3h.tcl b/tool/mksqlite3h.tcl
index f68f61a..a89b9f9 100644
--- a/tool/mksqlite3h.tcl
+++ b/tool/mksqlite3h.tcl
@@ -68,9 +68,14 @@ set declpattern {^ *[a-zA-Z][a-zA-Z_0-9 ]+ \**sqlite3_[_a-zA-Z0-9]+\(}
# Force the output to use unix line endings, even on Windows.
fconfigure stdout -translation lf
-# Process the src/sqlite.h.in ext/rtree/sqlite3rtree.h files.
+set filelist [subst {
+ $TOP/src/sqlite.h.in
+ $TOP/ext/rtree/sqlite3rtree.h
+}]
+
+# Process the source files.
#
-foreach file [list $TOP/src/sqlite.h.in $TOP/ext/rtree/sqlite3rtree.h] {
+foreach file $filelist {
set in [open $file]
while {![eof $in]} {