[Python-checkins] r52227 - python/trunk/Mac/BuildScript/scripts/postflight.documentation

ronald.oussoren python-checkins at python.org
Sun Oct 8 19:37:58 CEST 2006


Author: ronald.oussoren
Date: Sun Oct  8 19:37:58 2006
New Revision: 52227

Modified:
   python/trunk/Mac/BuildScript/scripts/postflight.documentation
Log:
Add version number to the link to the python documentation in 
/Developer/Documentation/Python, better for users that install multiple versions
of python.


Modified: python/trunk/Mac/BuildScript/scripts/postflight.documentation
==============================================================================
--- python/trunk/Mac/BuildScript/scripts/postflight.documentation	(original)
+++ python/trunk/Mac/BuildScript/scripts/postflight.documentation	Sun Oct  8 19:37:58 2006
@@ -1,6 +1,5 @@
 #!/bin/sh
 
-# FIXME
 PYVER="@PYVER@"
 
 if [ -d /Developer/Documentation ]; then
@@ -8,5 +7,5 @@
 		mkdir -p /Developer/Documentation/Python
 	fi
 
-	ln -fhs /Library/Frameworks/Python.framework/Versions/${PYVER}/Resources/English.lproj/Documentation "/Developer/Documentation/Python/Reference Documentation"
+	ln -fhs /Library/Frameworks/Python.framework/Versions/${PYVER}/Resources/English.lproj/Documentation "/Developer/Documentation/Python/Reference Documentation @PYVER@"
 fi


More information about the Python-checkins mailing list