]> granicus.if.org Git - python/commitdiff
Fix buglet in postinstall script, it would generate an invalid .cshrc file.
authorRonald Oussoren <ronaldoussoren@mac.com>
Fri, 26 May 2006 11:17:55 +0000 (11:17 +0000)
committerRonald Oussoren <ronaldoussoren@mac.com>
Fri, 26 May 2006 11:17:55 +0000 (11:17 +0000)
Mac/OSX/BuildScript/scripts/postflight.patch-profile

index f6e9787134686552dbdb67063d34676972fc1dff..48bf70158795fe161fe62af02c56eb3ef3050278 100755 (executable)
@@ -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)