[Python-checkins] cpython (merge 3.3 -> default): Issue #16256: merge from 3.3

ned.deily python-checkins at python.org
Fri Feb 1 23:06:55 CET 2013


http://hg.python.org/cpython/rev/bc2c40e84b58
changeset:   81892:bc2c40e84b58
parent:      81888:3029319d2d8a
parent:      81891:1db5ed6a2dc2
user:        Ned Deily <nad at acm.org>
date:        Fri Feb 01 14:06:24 2013 -0800
summary:
  Issue #16256: merge from 3.3

files:
  Mac/BuildScript/scripts/postflight.documentation |  2 +-
  Misc/NEWS                                        |  2 ++
  2 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Mac/BuildScript/scripts/postflight.documentation b/Mac/BuildScript/scripts/postflight.documentation
--- a/Mac/BuildScript/scripts/postflight.documentation
+++ b/Mac/BuildScript/scripts/postflight.documentation
@@ -16,7 +16,7 @@
 
 # make share/doc link in framework for command line users
 if [ -d "${SHARE_DIR}" ]; then
-    mkdir -p "${SHARE_DOCDIR}"
+    mkdir -m 775 -p "${SHARE_DOCDIR}"
     # make relative link to html doc directory
     ln -fhs "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html"
 fi
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1558,6 +1558,8 @@
 
 - Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs.
 
+- Issue #16256: OS X installer now sets correct permissions for doc directory.
+
 - Issue #15431: Add _freeze_importlib project to regenerate importlib.h on
   Windows. Patch by Kristján Valur Jónsson.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list