[Python-checkins] r46288 - python/trunk/Mac/OSX/BuildScript/scripts/postflight.patch-profile

ronald.oussoren python-checkins at python.org
Fri May 26 13:17:56 CEST 2006


Author: ronald.oussoren
Date: Fri May 26 13:17:55 2006
New Revision: 46288

Modified:
   python/trunk/Mac/OSX/BuildScript/scripts/postflight.patch-profile
Log:
Fix buglet in postinstall script, it would generate an invalid .cshrc file.


Modified: python/trunk/Mac/OSX/BuildScript/scripts/postflight.patch-profile
==============================================================================
--- python/trunk/Mac/OSX/BuildScript/scripts/postflight.patch-profile	(original)
+++ python/trunk/Mac/OSX/BuildScript/scripts/postflight.patch-profile	Fri May 26 13:17:55 2006
@@ -41,7 +41,7 @@
 	echo "" >> "${HOME}/.cshrc"
 	echo "# Setting PATH for MacPython ${PYVER}" >> "${HOME}/.cshrc"
 	echo "# The orginal version is saved in .cshrc.pysave" >> "${HOME}/.cshrc"
-	echo "setenv path=(${PYTHON_ROOT}/bin "'$path'")" >> "${HOME}/.cshrc"
+	echo "set path=(${PYTHON_ROOT}/bin "'$path'")" >> "${HOME}/.cshrc"
 	exit 0
 	;;
 bash)


More information about the Python-checkins mailing list