Create correct directory in CMake install.

Was creating ${CONFDIR}/cert instead of ${CONFDIR}/certs.
This commit is contained in:
Aric Belsito 2017-11-06 11:52:03 -08:00 committed by Brent Cook
parent 68a99284c3
commit 6cb4aa08ab

View File

@ -88,5 +88,5 @@ else()
endif() endif()
if(ENABLE_LIBRESSL_INSTALL) if(ENABLE_LIBRESSL_INSTALL)
install(FILES cert.pem openssl.cnf x509v3.cnf DESTINATION ${CONF_DIR}) install(FILES cert.pem openssl.cnf x509v3.cnf DESTINATION ${CONF_DIR})
install(DIRECTORY DESTINATION ${CONF_DIR}/cert) install(DIRECTORY DESTINATION ${CONF_DIR}/certs)
endif(ENABLE_LIBRESSL_INSTALL) endif(ENABLE_LIBRESSL_INSTALL)