- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Mac/BuildScript/scripts/postflight.patch-profile
r2 r391 21 21 BSH="`basename "${theShell}"`" 22 22 case "${BSH}" in 23 bash|ksh|sh|*csh )23 bash|ksh|sh|*csh|zsh) 24 24 if [ `id -ur` = 0 ]; then 25 25 P=`su - ${USER} -c 'echo A-X-4-X@@$PATH@@X-4-X-A' | grep 'A-X-4-X@@.*@@X-4-X-A' | sed -e 's/^A-X-4-X@@//g' -e 's/@@X-4-X-A$//g'` … … 58 58 fi 59 59 echo "" >> "${RC}" 60 echo "# Setting PATH for MacPython ${PYVER}" >> "${RC}"60 echo "# Setting PATH for Python ${PYVER}" >> "${RC}" 61 61 echo "# The orginal version is saved in .cshrc.pysave" >> "${RC}" 62 62 echo "set path=(${PYTHON_ROOT}/bin "'$path'")" >> "${RC}" … … 77 77 fi 78 78 ;; 79 zsh) 80 PR="${HOME}/.zprofile" 81 ;; 79 82 *sh) 80 83 PR="${HOME}/.profile" … … 87 90 fi 88 91 echo "" >> "${PR}" 89 echo "# Setting PATH for MacPython ${PYVER}" >> "${PR}"92 echo "# Setting PATH for Python ${PYVER}" >> "${PR}" 90 93 echo "# The orginal version is saved in `basename ${PR}`.pysave" >> "${PR}" 91 94 echo 'PATH="'"${PYTHON_ROOT}/bin"':${PATH}"' >> "${PR}"
Note:
See TracChangeset
for help on using the changeset viewer.