Skip to content

Commit a16b05b

Browse files
committed
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. ........
1 parent 540b636 commit a16b05b

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Mac/BuildScript/scripts/postflight.documentation

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ fi
2727
if [ -d "${SHARE_DIR}" ]; then
2828
mkdir -p "${SHARE_DOCDIR}"
2929
# make relative link to html doc directory
30-
ln -s "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html"
30+
ln -fhs "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html"
3131
fi
3232

Misc/NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ Library
2121
- Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
2222
larger than 4GB. Patch by Nadeem Vawda.
2323

24+
Build
25+
-----
26+
27+
- Issue #11268: Prevent Mac OS X Installer failure if Documentation
28+
package had previously been installed.
29+
2430

2531
What's New in Python 3.2?
2632
=========================

0 commit comments

Comments
 (0)