diff options
author | d3x0r <d3x0r@users.noreply.github.com> | 2017-07-06 01:49:43 -0700 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2017-07-07 00:10:15 -0500 |
commit | de9ea11a07f23809c102c7a2e0378d71f8713c16 (patch) | |
tree | c291010c226e8f389f3d95c9b8f303c9a9aa33be /man | |
parent | 3cf0bc1226d2f7c14c7fa82ee8fd1626963bac10 (diff) | |
download | portable-de9ea11a07f23809c102c7a2e0378d71f8713c16.tar.gz portable-de9ea11a07f23809c102c7a2e0378d71f8713c16.tar.bz2 portable-de9ea11a07f23809c102c7a2e0378d71f8713c16.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 'man')
-rw-r--r-- | man/CMakeLists.txt | 4 |
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 @@ | |||
1 | install(DIRECTORY . | 1 | install(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 | ||
6 | install(DIRECTORY . | 6 | install(DIRECTORY . |
7 | DESTINATION share/man/man1 | 7 | DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 |
8 | FILES_MATCHING PATTERN "*.1" | 8 | FILES_MATCHING PATTERN "*.1" |
9 | ) | 9 | ) |