aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2017-11-23 05:43:27 -0600
committerBrent Cook <bcook@openbsd.org>2017-11-23 05:43:27 -0600
commit53b5b56f39783ee51846b0f72ff736ab8373624d (patch)
tree90407683712089f989065ed9b278702ea0eec5b6
parent09ca0f7b8b4e8bcf394f6125dafec7757cbdc15a (diff)
parent653ba217528a003c83a8fe816ad38f21c3b3da67 (diff)
downloadportable-53b5b56f39783ee51846b0f72ff736ab8373624d.tar.gz
portable-53b5b56f39783ee51846b0f72ff736ab8373624d.tar.bz2
portable-53b5b56f39783ee51846b0f72ff736ab8373624d.zip
Land #359, create correct certs dir with CMake install
-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)