1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Fix the amalgamation generator so that when it is reporting the Fossil

version number in the header comment of the amalgamation, it does not
elide the first hex digit of the version hash.

FossilOrigin-Name: cc66f526bd58c110cac027583f636099fa05b2b56d7ea9807b554cd950c1bf3c
This commit is contained in:
drh
2023-10-25 12:58:06 +00:00
parent 9f20bde65a
commit a9a7d118f6
3 changed files with 8 additions and 8 deletions

View File

@ -116,7 +116,7 @@ if {$tcl_platform(platform)=="windows"} {
if {[file executable $vsrcprog] && [file readable $srcroot/manifest]} {
set res [string trim [split [exec $vsrcprog -x $srcroot]] \n]
puts $out "** The content in this amalgamation comes from Fossil check-in"
puts -nonewline $out "** [string range [lindex $res 0] 1 35]"
puts -nonewline $out "** [string range [lindex $res 0] 0 35]"
if {[llength $res]==1} {
puts $out "."
} else {