Issue #16067: Add description into MSI file to replace installer's temporary name.

This commit is contained in:
Martin v. Löwis 2013-08-03 20:24:00 +02:00
parent 3ade66c203
commit d5375dfb15
2 changed files with 6 additions and 1 deletions

View File

@ -98,6 +98,8 @@ Tools/Demos
Build Build
----- -----
- Issue #16067: Add description into MSI file to replace installer's temporary name.
- Issue #18256: Compilation fix for recent AIX releases. Patch by - Issue #18256: Compilation fix for recent AIX releases. Patch by
David Edelsohn. David Edelsohn.

View File

@ -1392,7 +1392,10 @@ merge(msiname, "SharedCRT", "TARGETDIR", modules)
# certname (from config.py) should be (a substring of) # certname (from config.py) should be (a substring of)
# the certificate subject, e.g. "Python Software Foundation" # the certificate subject, e.g. "Python Software Foundation"
if certname: 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: if pdbzip:
build_pdbzip() build_pdbzip()