aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authord3x0r <d3x0r@users.noreply.github.com>2017-07-06 01:49:43 -0700
committerd3x0r <d3x0r@users.noreply.github.com>2017-07-06 01:49:43 -0700
commita2bd5ebaba789822ae73e9059171c46ed6b8f574 (patch)
treea201fa8fa7a16438b7967121724c1f0367a8d6e2 /man
parent728bda183018cbc9736f03d4f21d2b4a2585e83d (diff)
downloadportable-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 '')
-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 )