diff options
author | d3x0r <d3x0r@users.noreply.github.com> | 2017-07-06 01:49:43 -0700 |
---|---|---|
committer | d3x0r <d3x0r@users.noreply.github.com> | 2017-07-06 01:49:43 -0700 |
commit | a2bd5ebaba789822ae73e9059171c46ed6b8f574 (patch) | |
tree | a201fa8fa7a16438b7967121724c1f0367a8d6e2 /apps/ocspcheck | |
parent | 728bda183018cbc9736f03d4f21d2b4a2585e83d (diff) | |
download | portable-a2bd5ebaba789822ae73e9059171c46ed6b8f574.tar.gz portable-a2bd5ebaba789822ae73e9059171c46ed6b8f574.tar.bz2 portable-a2bd5ebaba789822ae73e9059171c46ed6b8f574.zip |
use GNUInstallDirs from cmake to specify install paths.
Primarily this is to select whether 'lib64' or 'lib' is used on linux type systems.
Diffstat (limited to 'apps/ocspcheck')
-rw-r--r-- | apps/ocspcheck/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/ocspcheck/CMakeLists.txt b/apps/ocspcheck/CMakeLists.txt index a14485e..478f232 100644 --- a/apps/ocspcheck/CMakeLists.txt +++ b/apps/ocspcheck/CMakeLists.txt | |||
@@ -36,7 +36,7 @@ endif() | |||
36 | add_executable(ocspcheck ${OCSPCHECK_SRC}) | 36 | add_executable(ocspcheck ${OCSPCHECK_SRC}) |
37 | target_link_libraries(ocspcheck tls ${OPENSSL_LIBS}) | 37 | target_link_libraries(ocspcheck tls ${OPENSSL_LIBS}) |
38 | 38 | ||
39 | install(TARGETS ocspcheck DESTINATION bin) | 39 | install(TARGETS ocspcheck DESTINATION ${CMAKE_INSTALL_BINDIR}) |
40 | install(FILES ocspcheck.8 DESTINATION share/man/man8) | 40 | install(FILES ocspcheck.8 DESTINATION ${CMAKE_INSTALL_MANDIR}/man8) |
41 | 41 | ||
42 | endif() | 42 | endif() |