aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2017-07-06 23:58:40 -0500
committerBrent Cook <bcook@openbsd.org>2017-07-06 23:58:40 -0500
commit334245374a084ba175225c209ac9e18af5a60150 (patch)
tree9d16bd6ef17ef8c5dd5ed2e44793447e769615f3 /man
parent52080abbf79a5037800e46639ade099e08027d0c (diff)
parenta2bd5ebaba789822ae73e9059171c46ed6b8f574 (diff)
downloadportable-334245374a084ba175225c209ac9e18af5a60150.tar.gz
portable-334245374a084ba175225c209ac9e18af5a60150.tar.bz2
portable-334245374a084ba175225c209ac9e18af5a60150.zip
Land #323, use GNUInstallDirs from cmake to specify install paths
Diffstat (limited to 'man')
-rw-r--r--man/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/man/CMakeLists.txt b/man/CMakeLists.txt
index 5923f58..454b1ee 100644
--- a/man/CMakeLists.txt
+++ b/man/CMakeLists.txt
@@ -1,9 +1,9 @@
1install(DIRECTORY . 1install(DIRECTORY .
2 DESTINATION share/man/man3 2 DESTINATION ${CMAKE_INSTALL_MANDIR}/man3
3 FILES_MATCHING PATTERN "*.3" 3 FILES_MATCHING PATTERN "*.3"
4 ) 4 )
5 5
6install(DIRECTORY . 6install(DIRECTORY .
7 DESTINATION share/man/man1 7 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1
8 FILES_MATCHING PATTERN "*.1" 8 FILES_MATCHING PATTERN "*.1"
9 ) 9 )