[pypy-svn] r75406 - pypy/trunk/pypy/tool/release
afa at codespeak.net
afa at codespeak.net
Tue Jun 15 16:36:40 CEST 2010
Author: afa
Date: Tue Jun 15 16:36:39 2010
New Revision: 75406
Modified:
pypy/trunk/pypy/tool/release/pack.py
Log:
Fix the script to follow the new dll naming convention
Modified: pypy/trunk/pypy/tool/release/pack.py
==============================================================================
--- pypy/trunk/pypy/tool/release/pack.py (original)
+++ pypy/trunk/pypy/tool/release/pack.py Tue Jun 15 16:36:39 2010
@@ -10,7 +10,7 @@
def filenames_from_platform(platform):
if platform == 'win32':
files = [goal_dir / 'pypy-c.exe']
- dll = goal_dir.join('libpypy-c.exe.dll')
+ dll = goal_dir / 'libpypy-c.dll'
if dll.check():
files.append(dll)
else:
More information about the Pypy-commit
mailing list