Issue #11268: Prevent Mac OS X Installer failure if Documentation
package had previously been installed.
This commit is contained in:
parent
d8de5415c8
commit
5eaee2e23b
|
@ -27,6 +27,6 @@ fi
|
||||||
if [ -d "${SHARE_DIR}" ]; then
|
if [ -d "${SHARE_DIR}" ]; then
|
||||||
mkdir -p "${SHARE_DOCDIR}"
|
mkdir -p "${SHARE_DOCDIR}"
|
||||||
# make relative link to html doc directory
|
# 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
|
fi
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,14 @@ Library
|
||||||
- Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
|
- Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffers
|
||||||
larger than 4GB. Patch by Nadeem Vawda.
|
larger than 4GB. Patch by Nadeem Vawda.
|
||||||
|
|
||||||
|
Build
|
||||||
|
-----
|
||||||
|
|
||||||
|
- Issue #11268: Prevent Mac OS X Installer failure if Documentation
|
||||||
|
package had previously been installed.
|
||||||
|
|
||||||
Tests
|
Tests
|
||||||
|
-----
|
||||||
|
|
||||||
- Issue #10990: Prevent tests from clobbering a set trace function.
|
- Issue #10990: Prevent tests from clobbering a set trace function.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue