summaryrefslogtreecommitdiff
path: root/Mac
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-02-21 20:52:58 +0000
committerNed Deily <nad@acm.org>2011-02-21 20:52:58 +0000
commitff0edaf17a88e75c7ef74db2e64c7daba90db9e0 (patch)
treed659133a313e05b651a26f1a330944da62b222d8 /Mac
parentb97a539d34137cefe3772d7cb0dac9142648e159 (diff)
downloadcpython-ff0edaf17a88e75c7ef74db2e64c7daba90db9e0.tar.gz
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-xMac/BuildScript/scripts/postflight.documentation2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mac/BuildScript/scripts/postflight.documentation b/Mac/BuildScript/scripts/postflight.documentation
index 30d2ee527b..31fbf2feff 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