File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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.
You can’t perform that action at this time.
0 commit comments