Issue #16256: OS X installer now sets correct permissions for doc directory.
authorNed Deily <nad@acm.org>
Fri, 1 Feb 2013 21:58:00 +0000 (13:58 -0800)
committerNed Deily <nad@acm.org>
Fri, 1 Feb 2013 21:58:00 +0000 (13:58 -0800)
Mac/BuildScript/scripts/postflight.documentation
Misc/NEWS

index c4ba6163e3f33c28fabafc13a169296fdc67a41e..b9f28a5152156bf3814d9283f4c393548ada1030 100755 (executable)
@@ -16,7 +16,7 @@ fi
 
 # 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
index fc3500e1221235a3adf99d5e2067659e0c8fe381..591aad1100b52214b5e485f42f2c3b01e07340b5 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -789,6 +789,8 @@ Build
 
 - 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.