summaryrefslogtreecommitdiffstats
path: root/PCbuild
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-02 21:17:05 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2008-09-02 21:17:05 (GMT)
commit2e9b6cb6ec6cfed4126eb17994522717fae435e1 (patch)
tree9267dbeb87229f6511be04c90c0472c8a02bda24 /PCbuild
parent3e7dd78344668b1921f4c181a648ca812c1d0064 (diff)
downloadcpython-2e9b6cb6ec6cfed4126eb17994522717fae435e1.zip
cpython-2e9b6cb6ec6cfed4126eb17994522717fae435e1.tar.gz
cpython-2e9b6cb6ec6cfed4126eb17994522717fae435e1.tar.bz2
Use vs9to8.py to refresh the Visual Studio 2005 build files.
Diffstat (limited to 'PCbuild')
-rw-r--r--PCbuild/vs9to8.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/PCbuild/vs9to8.py b/PCbuild/vs9to8.py
index c59dea4..2dfbd5d 100644
--- a/PCbuild/vs9to8.py
+++ b/PCbuild/vs9to8.py
@@ -24,9 +24,9 @@ def vs9to8(src, dest):
# Bah. VS8.0 does not expand macros in file names.
# Replace them here.
- lines = lines.replace('$(sqlite3Dir)', '..\\..\\..\\sqlite-source-3.3.4')
- lines = lines.replace('$(bsddbDir)\\..\\..', '..\\..\\..\\db-4.4.20\\build_win32\\..')
- lines = lines.replace('$(bsddbDir)', '..\\..\\..\\db-4.4.20\\build_win32')
+ lines = lines.replace('$(sqlite3Dir)', '..\\..\\..\\sqlite-3.5.9')
+ lines = lines.replace('$(bsddbDir)\\..\\..', '..\\..\\..\\db-4.7.25.0\\build_windows\\..')
+ lines = lines.replace('$(bsddbDir)', '..\\..\\..\\db-4.7.25.0\\build_windows')
with open(destname, 'wb') as fout:
lines = lines.replace("\n", "\r\n")