Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9184556

Browse files
committed
Merged revisions 67125 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r67125 | martin.v.loewis | 2008-11-06 20:46:03 +0100 (Do, 06 Nov 2008) | 2 lines Stop including fake manifest file in DLLs directory. ........
1 parent 900646e commit 9184556

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

Tools/msi/msi.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -941,10 +941,12 @@ def add_files(db):
941941
root.add_file(manifest[0], **manifest[1])
942942
root.add_file(crtdll[0], **crtdll[1])
943943
# Copy the manifest
944-
manifest_dlls = manifest[0]+".root"
945-
open(manifest_dlls, "w").write(open(manifest[1]['src']).read().replace("msvcr","../msvcr"))
946-
DLLs.start_component("msvcr90_dlls", feature=private_crt)
947-
DLLs.add_file(manifest[0], src=os.path.abspath(manifest_dlls))
944+
# Actually, don't do that anymore - no DLL in DLLs should have a manifest
945+
# dependency on msvcr90.dll anymore, so this should not be necessary
946+
#manifest_dlls = manifest[0]+".root"
947+
#open(manifest_dlls, "w").write(open(manifest[1]['src']).read().replace("msvcr","../msvcr"))
948+
#DLLs.start_component("msvcr90_dlls", feature=private_crt)
949+
#DLLs.add_file(manifest[0], src=os.path.abspath(manifest_dlls))
948950

949951
# Now start the main component for the DLLs directory;
950952
# no regular files have been added to the directory yet.

0 commit comments

Comments
 (0)