[pypy-svn] r72677 - pypy/trunk/pypy/translator/platform

lucian at codespeak.net lucian at codespeak.net
Wed Mar 24 01:23:02 CET 2010


Author: lucian
Date: Wed Mar 24 01:23:00 2010
New Revision: 72677

Modified:
   pypy/trunk/pypy/translator/platform/darwin.py
Log:
Change extension of libraries generated for OS X to .bundle for consiscency and to avoid confusion. Translator and lltypesystem tests pass.

Modified: pypy/trunk/pypy/translator/platform/darwin.py
==============================================================================
--- pypy/trunk/pypy/translator/platform/darwin.py	(original)
+++ pypy/trunk/pypy/translator/platform/darwin.py	Wed Mar 24 01:23:00 2010
@@ -10,7 +10,7 @@
     standalone_only = ['-mdynamic-no-pic']
     shared_only = []
 
-    so_ext = 'so'
+    so_ext = 'bundle'
     
     def __init__(self, cc=None):
         if cc is None:



More information about the Pypy-commit mailing list