[Python-checkins] r74684 - in python/trunk: Lib/plat-mac/bundlebuilder.py Misc/NEWS

ronald.oussoren python-checkins at python.org
Sun Sep 6 14:23:19 CEST 2009


Author: ronald.oussoren
Date: Sun Sep  6 14:23:18 2009
New Revision: 74684

Log:
Fix for issue 4937


Modified:
   python/trunk/Lib/plat-mac/bundlebuilder.py
   python/trunk/Misc/NEWS

Modified: python/trunk/Lib/plat-mac/bundlebuilder.py
==============================================================================
--- python/trunk/Lib/plat-mac/bundlebuilder.py	(original)
+++ python/trunk/Lib/plat-mac/bundlebuilder.py	Sun Sep  6 14:23:18 2009
@@ -341,7 +341,6 @@
     "Python",  # the Python core library
     "Resources/English.lproj",
     "Resources/Info.plist",
-    "Resources/version.plist",
 ]
 
 def isFramework():

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Sun Sep  6 14:23:18 2009
@@ -366,6 +366,8 @@
 Library
 -------
 
+- Issue #4937: plat-mac/bundlebuilder revers to non-existing version.plist
+
 - Issue #6838: Use a list to accumulate the value instead of
   repeatedly concatenating strings in httplib's
   HTTPResponse._read_chunked providing a significant speed increase
@@ -1191,6 +1193,11 @@
 Build
 -----
 
+- Add 2 new options to ``--with-universal-archs`` on MacOSX: 
+  ``intel`` builds a distribution with ``i386`` and ``x86_64`` architectures,
+  while ``3-way`` builds a distribution with the ``ppc``, ``i386`` 
+  and ``x86_64`` architectures. 
+  
 - Issue #6802: Fix build issues on MacOSX 10.6
 
 - Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6.


More information about the Python-checkins mailing list