diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-11-22 02:08:49 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-11-22 02:08:49 (GMT) |
commit | 69a106ab41424dfcffb5cb7169459ea66b65ad3a (patch) | |
tree | db6e903c11796488ca0ee1bf3cd49bd8d9b345b0 /Tools | |
parent | ad36a291e002637f5af14d829d95ab6454501aee (diff) | |
download | cpython-69a106ab41424dfcffb5cb7169459ea66b65ad3a.zip cpython-69a106ab41424dfcffb5cb7169459ea66b65ad3a.tar.gz cpython-69a106ab41424dfcffb5cb7169459ea66b65ad3a.tar.bz2 |
Backport the distutils part of r83399 to fix #7645.
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/msi/msi.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index d988283..a1f67b8 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -1020,6 +1020,8 @@ def add_files(db): lib.glob("*.pem") lib.glob("*.pck") lib.add_file("zipdir.zip") + if dir=='tests' and parent.physical=='distutils': + lib.add_file("Setup.sample") if dir=='decimaltestdata': lib.glob("*.decTest") if dir=='xmltestdata': |