aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorAric Belsito <lluixhi@gmail.com>2017-11-06 11:52:03 -0800
committerBrent Cook <bcook@openbsd.org>2017-11-23 05:42:25 -0600
commit6cb4aa08abea7ec0a7a3c588f30ec6028f1c8c17 (patch)
tree634572b6fa1c14a4a091a088fa14228b30e2763f /apps
parent68a99284c345174f279ed74a27d42dc3eb99aacb (diff)
downloadportable-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.txt2
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()
88endif() 88endif()
89if(ENABLE_LIBRESSL_INSTALL) 89if(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)
92endif(ENABLE_LIBRESSL_INSTALL) 92endif(ENABLE_LIBRESSL_INSTALL)