summaryrefslogtreecommitdiffstats
path: root/PCbuild/vs9to8.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-06-04 09:30:30 (GMT)
committerGeorg Brandl <georg@python.org>2009-06-04 09:30:30 (GMT)
commit1158a33fab14fe0522dd5ebc753c573369652eff (patch)
tree4e163616865a7559e94587f62f8976673c678d02 /PCbuild/vs9to8.py
parentb54d801280e3f510782e2855504710947d10f053 (diff)
downloadcpython-1158a33fab14fe0522dd5ebc753c573369652eff.zip
cpython-1158a33fab14fe0522dd5ebc753c573369652eff.tar.gz
cpython-1158a33fab14fe0522dd5ebc753c573369652eff.tar.bz2
#3791: remove last traces of bsddb.
Diffstat (limited to 'PCbuild/vs9to8.py')
-rw-r--r--PCbuild/vs9to8.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/PCbuild/vs9to8.py b/PCbuild/vs9to8.py
index 0a341fb..bab3b6e 100644
--- a/PCbuild/vs9to8.py
+++ b/PCbuild/vs9to8.py
@@ -25,8 +25,6 @@ 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('$(bsddbDir)\\..\\..', '..\\..\\..\\db-4.4.20\\build_win32\\..')
- lines = lines.replace('$(bsddbDir)', '..\\..\\..\\db-4.4.20\\build_win32')
with open(destname, 'wb') as fout:
lines = lines.replace("\n", "\r\n").encode()