[Python-checkins] cpython (2.7): Issue #16256: OS X installer now sets correct permissions for doc directory.

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


http://hg.python.org/cpython/rev/d64e0cf5f1a7
changeset:   81889:d64e0cf5f1a7
branch:      2.7
parent:      81878:c8f8708d509a
user:        Ned Deily <nad at acm.org>
date:        Fri Feb 01 13:58:00 2013 -0800
summary:
  Issue #16256: OS X installer now sets correct permissions for doc directory.

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
@@ -789,6 +789,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 #8767: Restore building with --disable-unicode.
   Patch by Stefano Taschini.
 

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


More information about the Python-checkins mailing list