diff options
author | drh <> | 2025-05-26 23:20:23 +0000 |
---|---|---|
committer | drh <> | 2025-05-26 23:20:23 +0000 |
commit | f08f71a21d0ac10275002f626a1723a2bf824c36 (patch) | |
tree | d6a6595737b3839ca0a9658e52b5994f6a0bbbdf /tool/split-sqlite3c.tcl | |
parent | f96d44e5dea47a266f69841bdc86d90bc3f8c3e8 (diff) | |
download | sqlite-f08f71a21d0ac10275002f626a1723a2bf824c36.tar.gz sqlite-f08f71a21d0ac10275002f626a1723a2bf824c36.zip |
Slight change to tool/split-sqlite3c.tcl to make it compatible with jimsh
FossilOrigin-Name: fe670ddda933007386eb10facf4048ee88671f74b1fd41dfc3120beb717b8c9e
Diffstat (limited to 'tool/split-sqlite3c.tcl')
-rw-r--r-- | tool/split-sqlite3c.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/split-sqlite3c.tcl b/tool/split-sqlite3c.tcl index de4db55a1..3554933cd 100644 --- a/tool/split-sqlite3c.tcl +++ b/tool/split-sqlite3c.tcl @@ -56,7 +56,7 @@ proc write_one_file {content} { set label $filecnt } set out [open sqlite3-$label.c w] - fconfigure $out -translation lf + fconfigure $out -translation text puts -nonewline $out $content close $out puts $::out1 "#include \"sqlite3-$filecnt.c\"" |