diff options
Diffstat (limited to 'PCbuild/vs9to8.py')
-rw-r--r-- | PCbuild/vs9to8.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/vs9to8.py b/PCbuild/vs9to8.py index bab3b6e..3b88a16 100644 --- a/PCbuild/vs9to8.py +++ b/PCbuild/vs9to8.py @@ -24,7 +24,7 @@ def vs9to8(src, dest): # Bah. VS8.0 does not expand macros in file names. # Replace them here. - lines = lines.replace('$(sqlite3Dir)', '..\\..\\..\\sqlite-3.5.9') + lines = lines.replace('$(sqlite3Dir)', '..\\..\\..\\sqlite-3.6.21') with open(destname, 'wb') as fout: lines = lines.replace("\n", "\r\n").encode() |