diff options
author | Aric Belsito <lluixhi@gmail.com> | 2017-11-06 11:52:03 -0800 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2017-11-23 05:42:25 -0600 |
commit | 6cb4aa08abea7ec0a7a3c588f30ec6028f1c8c17 (patch) | |
tree | 634572b6fa1c14a4a091a088fa14228b30e2763f /apps | |
parent | 68a99284c345174f279ed74a27d42dc3eb99aacb (diff) | |
download | portable-6cb4aa08abea7ec0a7a3c588f30ec6028f1c8c17.tar.gz portable-6cb4aa08abea7ec0a7a3c588f30ec6028f1c8c17.tar.bz2 portable-6cb4aa08abea7ec0a7a3c588f30ec6028f1c8c17.zip |
Create correct directory in CMake install.
Was creating ${CONFDIR}/cert instead of ${CONFDIR}/certs.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/openssl/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/openssl/CMakeLists.txt b/apps/openssl/CMakeLists.txt index 71fbd63..718c208 100644 --- a/apps/openssl/CMakeLists.txt +++ b/apps/openssl/CMakeLists.txt | |||
@@ -88,5 +88,5 @@ else() | |||
88 | endif() | 88 | endif() |
89 | if(ENABLE_LIBRESSL_INSTALL) | 89 | if(ENABLE_LIBRESSL_INSTALL) |
90 | install(FILES cert.pem openssl.cnf x509v3.cnf DESTINATION ${CONF_DIR}) | 90 | install(FILES cert.pem openssl.cnf x509v3.cnf DESTINATION ${CONF_DIR}) |
91 | install(DIRECTORY DESTINATION ${CONF_DIR}/cert) | 91 | install(DIRECTORY DESTINATION ${CONF_DIR}/certs) |
92 | endif(ENABLE_LIBRESSL_INSTALL) | 92 | endif(ENABLE_LIBRESSL_INSTALL) |