aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorAric Belsito <lluixhi@gmail.com>2017-11-06 11:52:03 -0800
committerAric Belsito <lluixhi@gmail.com>2017-11-06 11:52:03 -0800
commit653ba217528a003c83a8fe816ad38f21c3b3da67 (patch)
tree731c72147375428c7182d209ded631ed370ac259 /apps
parentb32a92bc441ae25f55b50a75e711fab59f1a8054 (diff)
downloadportable-653ba217528a003c83a8fe816ad38f21c3b3da67.tar.gz
portable-653ba217528a003c83a8fe816ad38f21c3b3da67.tar.bz2
portable-653ba217528a003c83a8fe816ad38f21c3b3da67.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)