Merge pull request #308 from MilhouseVH/cabundle_fix

libressl: Add /etc/pki/tls link for backwards compat
This commit is contained in:
Christian Hewitt 2016-05-06 02:03:13 +04:00
commit ab6b884934

View File

@ -31,3 +31,9 @@ PKG_LONGDESC="LibreSSL is a FREE version of the SSL/TLS protocol forked from Ope
PKG_IS_ADDON="no"
PKG_AUTORECONF="yes"
post_makeinstall_target() {
# backwards comatibility
mkdir -p $INSTALL/etc/pki/tls
ln -sf /etc/ssl/cert.pem $INSTALL/etc/pki/tls/cacert.pem
}