[pypy-commit] pypy release-1.6.x: Include msvcr90.dll in the win32 distribution, for now.

arigo noreply at buildbot.pypy.org
Fri Aug 26 11:54:55 CEST 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: release-1.6.x
Changeset: r46785:c9cbec59b94d
Date: 2011-08-26 12:00 +0200
http://bitbucket.org/pypy/pypy/changeset/c9cbec59b94d/

Log:	Include msvcr90.dll in the win32 distribution, for now.

diff --git a/pypy/tool/release/package.py b/pypy/tool/release/package.py
--- a/pypy/tool/release/package.py
+++ b/pypy/tool/release/package.py
@@ -54,6 +54,7 @@
         libpypy_c = pypy_c_dir.join('libpypy-c.dll')
         binaries = [(pypy_c, pypy_c.basename),
                     (libpypy_c, libpypy_c.basename),
+                    (pypy_c_dir.join('msvcr90.dll'), 'msvcr90.dll'),
                     (pypy_c_dir.join('libexpat.dll'), 'libexpat.dll')]
     else:
         basename = 'pypy-c'


More information about the pypy-commit mailing list