Issue #16067: Merge with 3.3

This commit is contained in:
Martin v. Löwis 2013-08-03 20:12:45 +02:00
commit d87c3d3ea4
2 changed files with 7 additions and 1 deletions

View File

@ -763,6 +763,9 @@ Windows
Build
-----
- Issue #16067: Add description into MSI file to replace installer's
temporary name.
- Issue #18257: Fix readlink usage in python-config. Install the python
version again on Darwin.

View File

@ -1415,7 +1415,10 @@ merge(msiname, "SharedCRT", "TARGETDIR", modules)
# certname (from config.py) should be (a substring of)
# the certificate subject, e.g. "Python Software Foundation"
if certname:
os.system('signtool sign /n "%s" /t http://timestamp.verisign.com/scripts/timestamp.dll %s' % (certname, msiname))
os.system('signtool sign /n "%s" '
'/t http://timestamp.verisign.com/scripts/timestamp.dll '
'/d "Python %s" '
'%s' % (certname, full_current_version, msiname))
if pdbzip:
build_pdbzip()