From: Ronald Oussoren Date: Fri, 26 May 2006 11:17:55 +0000 (+0000) Subject: Fix buglet in postinstall script, it would generate an invalid .cshrc file. X-Git-Tag: v2.5b1~492 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=072a24c33a671914d3c42e3514618c05d2016936;p=python Fix buglet in postinstall script, it would generate an invalid .cshrc file. --- diff --git a/Mac/OSX/BuildScript/scripts/postflight.patch-profile b/Mac/OSX/BuildScript/scripts/postflight.patch-profile index f6e9787134..48bf701587 100755 --- a/Mac/OSX/BuildScript/scripts/postflight.patch-profile +++ b/Mac/OSX/BuildScript/scripts/postflight.patch-profile @@ -41,7 +41,7 @@ case "${BSH}" in 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)