summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMac/BuildScript/scripts/postflight.documentation2
-rw-r--r--Misc/NEWS3
2 files changed, 4 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
diff --git a/Misc/NEWS b/Misc/NEWS
index 40c564435a..bd086c877c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -173,6 +173,9 @@ Extension Modules
Build
-----
+- Issue #11268: Prevent Mac OS X Installer failure if Documentation
+ package had previously been installed.
+
- Issue #11079: The /Applications/Python x.x folder created by the Mac
OS X installers now includes a link to the installed documentation.