mirror of https://github.com/python/cpython
Merge heads
This commit is contained in:
commit
616c44188d
|
@ -765,6 +765,9 @@ Windows
|
||||||
Build
|
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
|
- Issue #18257: Fix readlink usage in python-config. Install the python
|
||||||
version again on Darwin.
|
version again on Darwin.
|
||||||
|
|
||||||
|
|
|
@ -1415,7 +1415,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()
|
||||||
|
|
Loading…
Reference in New Issue