]> granicus.if.org Git - python/commitdiff
Issue #11268: Prevent Mac OS X Installer failure if Documentation
authorNed Deily <nad@acm.org>
Mon, 21 Feb 2011 20:44:27 +0000 (20:44 +0000)
committerNed Deily <nad@acm.org>
Mon, 21 Feb 2011 20:44:27 +0000 (20:44 +0000)
package had previously been installed.

Mac/BuildScript/scripts/postflight.documentation
Misc/NEWS

index 30d2ee527ba045c1b638ffc1793314e96887a359..31fbf2feffd75b779152ab41c64c63fedb0da01b 100755 (executable)
@@ -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
 
index 65ae5f905013299c3f202bc09aeedd55a0468eab..d01a0e1d93ddd84c898bcda19c65619e6b45167b 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,7 +21,14 @@ Library
 - 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.
+
 Tests
+-----
 
 - Issue #10990: Prevent tests from clobbering a set trace function.