[Python-checkins] r47093 - python/trunk/Mac/BuildScript/scripts/postflight.framework

ronald.oussoren python-checkins at python.org
Sun Jun 25 23:15:58 CEST 2006


Author: ronald.oussoren
Date: Sun Jun 25 23:15:58 2006
New Revision: 47093

Modified:
   python/trunk/Mac/BuildScript/scripts/postflight.framework
Log:
Use a path without a double slash to compile the .py files after installation
(macosx, binary installer). This fixes bug #1508369 for python 2.5.


Modified: python/trunk/Mac/BuildScript/scripts/postflight.framework
==============================================================================
--- python/trunk/Mac/BuildScript/scripts/postflight.framework	(original)
+++ python/trunk/Mac/BuildScript/scripts/postflight.framework	Sun Jun 25 23:15:58 2006
@@ -4,7 +4,7 @@
 #
 
 PYVER="@PYVER@"
-FWK="/Library/Frameworks/Python.framework/Versions/@PYVER@/"
+FWK="/Library/Frameworks/Python.framework/Versions/@PYVER@"
 
 "${FWK}/bin/python" -Wi -tt \
     "${FWK}/lib/python${PYVER}/compileall.py" \


More information about the Python-checkins mailing list