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

Fix the sqlite3.h generator script so that it generates the correct

SQLITE_SOURCE_ID string with the latest versions of Fossil that 
include fractional seconds on the date/time stamp.

FossilOrigin-Name: 3513bf6ee090d9be97f60e12a4b39f4361ee17b7
This commit is contained in:
drh
2011-01-11 12:46:05 +00:00
parent 444d26065e
commit bbd91944dd
6 changed files with 14 additions and 14 deletions

0
tool/mkopts.tcl Executable file → Normal file
View File

View File

@ -53,7 +53,7 @@ set in [open $TOP/manifest]
set zDate {}
while {![eof $in]} {
set line [gets $in]
if {[regexp {^D (2.*[0-9])} $line all date]} {
if {[regexp {^D (2[-0-9T:]+)} $line all date]} {
set zDate [string map {T { }} $date]
break
}