[pypy-svn] r75382 - pypy/trunk/pypy/tool/release

fijal at codespeak.net fijal at codespeak.net
Sun Jun 13 20:41:09 CEST 2010


Author: fijal
Date: Sun Jun 13 20:41:07 2010
New Revision: 75382

Modified:
   pypy/trunk/pypy/tool/release/pack.py
Log:
Correct the dll name.


Modified: pypy/trunk/pypy/tool/release/pack.py
==============================================================================
--- pypy/trunk/pypy/tool/release/pack.py	(original)
+++ pypy/trunk/pypy/tool/release/pack.py	Sun Jun 13 20:41:07 2010
@@ -10,7 +10,7 @@
 def filenames_from_platform(platform):
     if platform == 'win32':
         files = [goal_dir / 'pypy-c.exe']
-        dll = goal_dir.join('pypy-c.dll')
+        dll = goal_dir.join('libpypy-c.exe.dll')
         if dll.check():
             files.append(dll)
     else:



More information about the Pypy-commit mailing list