- 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.documentation
r2 r391 2 2 3 3 PYVER="@PYVER@" 4 FWK="/Library/Frameworks/Python.framework/Versions/${PYVER}" 5 FWK_DOCDIR_SUBPATH="Resources/English.lproj/Documentation" 6 FWK_DOCDIR="${FWK}/${FWK_DOCDIR_SUBPATH}" 7 APPDIR="/Applications/Python ${PYVER}" 8 SHARE_DIR="${FWK}/share" 9 SHARE_DOCDIR="${SHARE_DIR}/doc/python${PYVER}" 10 SHARE_DOCDIR_TO_FWK="../../.." 4 11 5 if [ -d /Developer/Documentation ]; then 6 if [ ! -d /Developer/Documentation/Python]; then7 mkdir -p /Developer/Documentation/Python 8 12 # make link in /Applications/Python m.n/ for Finder users 13 if [ -d "${APPDIR}" ]; then 14 ln -fhs "${FWK_DOCDIR}/index.html" "${APPDIR}/Python Documentation.html" 15 fi 9 16 10 ln -fhs /Library/Frameworks/Python.framework/Versions/${PYVER}/Resources/English.lproj/Documentation "/Developer/Documentation/Python/Reference Documentation @PYVER@" 17 # make share/doc link in framework for command line users 18 if [ -d "${SHARE_DIR}" ]; then 19 mkdir -m 775 -p "${SHARE_DOCDIR}" 20 # make relative link to html doc directory 21 ln -fhs "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html" 11 22 fi 23
Note:
See TracChangeset
for help on using the changeset viewer.