mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
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. ........
This commit is contained in:
parent
540b636077
commit
a16b05b317
2 changed files with 7 additions and 1 deletions
|
@ -27,6 +27,6 @@ fi
|
||||||
if [ -d "${SHARE_DIR}" ]; then
|
if [ -d "${SHARE_DIR}" ]; then
|
||||||
mkdir -p "${SHARE_DOCDIR}"
|
mkdir -p "${SHARE_DOCDIR}"
|
||||||
# make relative link to html doc directory
|
# 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
|
fi
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,12 @@ Library
|
||||||
- Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
|
- Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
|
||||||
larger than 4GB. Patch by Nadeem Vawda.
|
larger than 4GB. Patch by Nadeem Vawda.
|
||||||
|
|
||||||
|
Build
|
||||||
|
-----
|
||||||
|
|
||||||
|
- Issue #11268: Prevent Mac OS X Installer failure if Documentation
|
||||||
|
package had previously been installed.
|
||||||
|
|
||||||
|
|
||||||
What's New in Python 3.2?
|
What's New in Python 3.2?
|
||||||
=========================
|
=========================
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue