diff options
author | Ned Deily <nad@acm.org> | 2011-02-21 21:00:09 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2011-02-21 21:00:09 (GMT) |
commit | e6cc7d64275cc90c2b05fc29604d0e02ff2bc2d8 (patch) | |
tree | 30111ebd4d8a177034b2912309ec7efd7c980b8c /Mac | |
parent | 5f9d3675604c06d097bc68b2771cee64e3b8d34b (diff) | |
download | cpython-e6cc7d64275cc90c2b05fc29604d0e02ff2bc2d8.zip cpython-e6cc7d64275cc90c2b05fc29604d0e02ff2bc2d8.tar.gz cpython-e6cc7d64275cc90c2b05fc29604d0e02ff2bc2d8.tar.bz2 |
Merged revisions 88475 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88475 | ned.deily | 2011-02-21 12:44:27 -0800 (Mon, 21 Feb 2011) | 3 lines
Issue #11268: Prevent Mac OS X Installer failure if Documentation
package had previously been installed.
........
Diffstat (limited to 'Mac')
-rwxr-xr-x | Mac/BuildScript/scripts/postflight.documentation | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/BuildScript/scripts/postflight.documentation b/Mac/BuildScript/scripts/postflight.documentation index 30d2ee5..31fbf2f 100755 --- a/Mac/BuildScript/scripts/postflight.documentation +++ b/Mac/BuildScript/scripts/postflight.documentation @@ -27,6 +27,6 @@ fi if [ -d "${SHARE_DIR}" ]; then mkdir -p "${SHARE_DOCDIR}" # make relative link to html doc directory - ln -s "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html" + ln -fhs "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html" fi |