Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ed72e275
Commit
ed72e275
authored
Aug 03, 2013
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Plain Diff
Merge heads
parents
a21f4adc
b0eee834
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
Misc/NEWS
Misc/NEWS
+2
-0
Tools/msi/msi.py
Tools/msi/msi.py
+4
-1
No files found.
Misc/NEWS
View file @
ed72e275
...
...
@@ -306,6 +306,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
.
...
...
Tools/msi/msi.py
View file @
ed72e275
...
...
@@ -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
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment