Issue #16256: OS X installer now sets correct permissions for doc directory.

This commit is contained in:
Ned Deily 2013-02-01 13:59:42 -08:00
parent 9b57cf5810
commit 6214d4937c
2 changed files with 3 additions and 1 deletions

View file

@ -16,7 +16,7 @@ fi
# make share/doc link in framework for command line users # make share/doc link in framework for command line users
if [ -d "${SHARE_DIR}" ]; then if [ -d "${SHARE_DIR}" ]; then
mkdir -p "${SHARE_DOCDIR}" mkdir -m 775 -p "${SHARE_DOCDIR}"
# make relative link to html doc directory # make relative link to html doc directory
ln -fhs "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html" ln -fhs "${SHARE_DOCDIR_TO_FWK}/${FWK_DOCDIR_SUBPATH}" "${SHARE_DOCDIR}/html"
fi fi

View file

@ -958,6 +958,8 @@ Build
- Issue #14018: Fix OS X Tcl/Tk framework checking when using OS X SDKs. - 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.
Tools/Demos Tools/Demos
----------- -----------