diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-09-09 06:42:00 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-09-09 06:42:00 (GMT) |
commit | f7bfcfbb68d71611e7ffae3de7b425c68433f59a (patch) | |
tree | cfdf80cc12f214bbaf6a01ce418a0206e15b08ae /Tools | |
parent | a27244bfa13ed7e0efd0d0fd2dd6a553fbb08124 (diff) | |
download | cpython-f7bfcfbb68d71611e7ffae3de7b425c68433f59a.zip cpython-f7bfcfbb68d71611e7ffae3de7b425c68433f59a.tar.gz cpython-f7bfcfbb68d71611e7ffae3de7b425c68433f59a.tar.bz2 |
#3791: Remove bsddb from the Windows msi installer,
And do not compile the core bsddb library.
Reviewed by Martin von Loewis.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index 66457fb..fa80dfb 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -83,7 +83,6 @@ extensions = [ 'unicodedata.pyd', 'winsound.pyd', '_elementtree.pyd', - '_bsddb.pyd', '_socket.pyd', '_ssl.pyd', '_testcapi.pyd', @@ -951,7 +950,7 @@ def add_files(db): continue tcltk.set_current() elif dir in ['test', 'tests', 'data', 'output']: - # test: Lib, Lib/email, Lib/bsddb, Lib/ctypes, Lib/sqlite3 + # test: Lib, Lib/email, Lib/ctypes, Lib/sqlite3 # tests: Lib/distutils # data: Lib/email/test # output: Lib/test |