SourceForge: pybzedit/pybzedit: changeset 46:b13934a69d1e
add private copies of the ms visual c run time files
authorDavid Lawler <djlawler@aol.com>
Sat Jul 18 10:47:39 2009 -0400 (4 months ago)
changeset 46b13934a69d1e
parent 45e7a2cf23aa66
child 479bc5fbbe26ae
add private copies of the ms visual c run time files
cpython/setup.py
     1.1 --- a/cpython/setup.py	Sat Jul 18 09:06:58 2009 -0400
     1.2 +++ b/cpython/setup.py	Sat Jul 18 10:47:39 2009 -0400
     1.3 @@ -22,4 +22,13 @@
     1.4  if os.path.isdir(destdir):
     1.5      shutil.rmtree(destdir)
     1.6  shutil.copytree(sourcedir, destdir, ignore=shutil.ignore_patterns('*.pyo', '*.py', 'PyOpenGL-Demo-3.0.0*'))
     1.7 -shutil.copyfile("pyBzEdit.ico", "build\\exe.win32-2.6\\pyBzEdit.ico")
     1.8 \ No newline at end of file
     1.9 +shutil.copyfile("pyBzEdit.ico", "build\\exe.win32-2.6\\pyBzEdit.ico")
    1.10 +# now get the runtime files that are needed
    1.11 +shutil.copyfile("C:\\WINDOWS\\WinSxS\\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_d08d0375\\msvcm90.dll",
    1.12 +                "build\\exe.win32-2.6\\msvcm90.dll")
    1.13 +shutil.copyfile("C:\\WINDOWS\\WinSxS\\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_d08d0375\\msvcp90.dll",
    1.14 +                "build\\exe.win32-2.6\\msvcp90.dll")
    1.15 +shutil.copyfile("C:\\WINDOWS\\WinSxS\\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_d08d0375\\msvcr90.dll",
    1.16 +                "build\\exe.win32-2.6\\msvcr90.dll")
    1.17 +shutil.copyfile("C:\\WINDOWS\\WinSxS\\Manifests\\x86_Microsoft.VC90.CRT_1fc8b3b9a1e18e3b_9.0.21022.8_x-ww_d08d0375.manifest",
    1.18 +                "build\\exe.win32-2.6\\Microsoft.VC90.CRT.manifest")