diff options
author | Aric Belsito <lluixhi@gmail.com> | 2017-11-06 11:52:03 -0800 |
---|---|---|
committer | Aric Belsito <lluixhi@gmail.com> | 2017-11-06 11:52:03 -0800 |
commit | 653ba217528a003c83a8fe816ad38f21c3b3da67 (patch) | |
tree | 731c72147375428c7182d209ded631ed370ac259 /apps | |
parent | b32a92bc441ae25f55b50a75e711fab59f1a8054 (diff) | |
download | portable-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.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) |