[pypy-svn] r59132 - pypy/branch/cbuild-refactor/pypy/translator/platform

fijal at codespeak.net fijal at codespeak.net
Thu Oct 16 12:02:54 CEST 2008


Author: fijal
Date: Thu Oct 16 12:02:54 2008
New Revision: 59132

Modified:
   pypy/branch/cbuild-refactor/pypy/translator/platform/distutils_platform.py
Log:
wuaa. don't check in name errors


Modified: pypy/branch/cbuild-refactor/pypy/translator/platform/distutils_platform.py
==============================================================================
--- pypy/branch/cbuild-refactor/pypy/translator/platform/distutils_platform.py	(original)
+++ pypy/branch/cbuild-refactor/pypy/translator/platform/distutils_platform.py	Thu Oct 16 12:02:54 2008
@@ -11,6 +11,11 @@
 
 CFLAGS = ['-O3']
 
+if os.name != 'nt':
+    so_ext = '.so'
+else:
+    so_ext = '.dll'
+
 class DistutilsPlatform(Platform):
     """ This is a generic distutils platform. I hope it'll go away at some
     point soon completely



More information about the Pypy-commit mailing list