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
1319bb1c
Commit
1319bb1c
authored
May 12, 2006
by
Martin v. Löwis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move icon files into DLLs dir. Fixes #1477968.
parent
682b1bb9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
Tools/msi/msi.py
Tools/msi/msi.py
+5
-5
No files found.
Tools/msi/msi.py
View file @
1319bb1c
...
...
@@ -846,8 +846,6 @@ def add_files(db):
default_feature.set_current()
if not msilib.Win64:
root.add_file("
PCBuild
/
w9xpopen
.
exe
")
root.add_file("
PC
/
py
.
ico
")
root.add_file("
PC
/
pyc
.
ico
")
root.add_file("
README
.
txt
", src="
README
")
root.add_file("
NEWS
.
txt
", src="
Misc
/
NEWS
")
root.add_file("
LICENSE
.
txt
", src="
LICENSE
")
...
...
@@ -956,6 +954,8 @@ def add_files(db):
# Add DLLs
default_feature.set_current()
lib = PyDirectory(db, cab, root, srcdir+"
/
PCBuild
", "
DLLs
", "
DLLS
|
DLLs
")
lib.add_file("
py
.
ico
", src="
..
/
PC
/
py
.
ico
")
lib.add_file("
pyc
.
ico
", src="
..
/
PC
/
pyc
.
ico
")
dlls = []
tclfiles = []
for f in extensions:
...
...
@@ -1124,11 +1124,11 @@ def add_registry(db):
] + tcl_verbs + [
#Icons
("
py
.
icon
", -1, pat2 % (testprefix, ""), "",
r'[
TARGETDIR
]py.ico', "
REGISTRY
.
def
"),
r'[
DLLs
]py.ico', "
REGISTRY
.
def
"),
("
pyw
.
icon
", -1, pat2 % (testprefix, "
NoCon
"), "",
r'[
TARGETDIR
]py.ico', "
REGISTRY
.
def
"),
r'[
DLLs
]py.ico', "
REGISTRY
.
def
"),
("
pyc
.
icon
", -1, pat2 % (testprefix, "
Compiled
"), "",
r'[
TARGETDIR
]pyc.ico', "
REGISTRY
.
def
"),
r'[
DLLs
]pyc.ico', "
REGISTRY
.
def
"),
# Descriptions
("
py
.
txt
", -1, pat3 % (testprefix, ""), "",
"
Python
File
", "
REGISTRY
.
def
"),
...
...
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