]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #16067: Add description into MSI file to replace installer's temporary name.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 3 Aug 2013 18:09:42 +0000 (20:09 +0200)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 3 Aug 2013 18:09:42 +0000 (20:09 +0200)
Misc/NEWS
Tools/msi/msi.py

index 00b5a69d86e615b1893b1313391d03836a12c121..2450a75cff8f44e4e9bb1b70c56af57ccf223c54 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -304,6 +304,8 @@ Tools/Demos
 Build
 -----
 
+- Issue #16067: Add description into MSI file to replace installer's temporary name.
+
 - Issue #18256: Compilation fix for recent AIX releases.  Patch by
   David Edelsohn.
 
index 2ec6951d6a9b35407799887ee943375e53935cdb..5ed025d794516d83c24ece4899e8fd6e90673516 100644 (file)
@@ -1410,7 +1410,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()