diff options
author | Ronald Oussoren <ronaldoussoren@mac.com> | 2006-05-26 11:17:55 (GMT) |
---|---|---|
committer | Ronald Oussoren <ronaldoussoren@mac.com> | 2006-05-26 11:17:55 (GMT) |
commit | 072a24c33a671914d3c42e3514618c05d2016936 (patch) | |
tree | 53c40107d26506af433a18d7aa0331166c93bdf4 /Mac/OSX | |
parent | 03fb44499006da1c390800430be6d2448d01f30d (diff) | |
download | cpython-072a24c33a671914d3c42e3514618c05d2016936.zip cpython-072a24c33a671914d3c42e3514618c05d2016936.tar.gz cpython-072a24c33a671914d3c42e3514618c05d2016936.tar.bz2 |
Fix buglet in postinstall script, it would generate an invalid .cshrc file.
Diffstat (limited to 'Mac/OSX')
-rwxr-xr-x | Mac/OSX/BuildScript/scripts/postflight.patch-profile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/OSX/BuildScript/scripts/postflight.patch-profile b/Mac/OSX/BuildScript/scripts/postflight.patch-profile index f6e9787..48bf701 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) |