[Python-checkins] r88477 - in python/branches/release32-maint: Mac/BuildScript/scripts/postflight.documentation Misc/NEWS

ned.deily python-checkins at python.org
Mon Feb 21 21:52:58 CET 2011


Author: ned.deily
Date: Mon Feb 21 21:52:58 2011
New Revision: 88477

Log:
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.
........


Modified:
   python/branches/release32-maint/   (props changed)
   python/branches/release32-maint/Mac/BuildScript/scripts/postflight.documentation
   python/branches/release32-maint/Misc/NEWS

Modified: python/branches/release32-maint/Mac/BuildScript/scripts/postflight.documentation
==============================================================================
--- python/branches/release32-maint/Mac/BuildScript/scripts/postflight.documentation	(original)
+++ python/branches/release32-maint/Mac/BuildScript/scripts/postflight.documentation	Mon Feb 21 21:52:58 2011
@@ -27,6 +27,6 @@
 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
 

Modified: python/branches/release32-maint/Misc/NEWS
==============================================================================
--- python/branches/release32-maint/Misc/NEWS	(original)
+++ python/branches/release32-maint/Misc/NEWS	Mon Feb 21 21:52:58 2011
@@ -21,6 +21,12 @@
 - Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
   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?
 =========================


More information about the Python-checkins mailing list