aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2015-08-18 06:43:25 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2015-08-18 06:43:25 -0400
commit39bcad23dd02d7e477bc4bfc1977c1f08108dcad (patch)
tree045e3dff6e5d8e02dbef021fa28b6ba766869c94
parentFix comments in config file (diff)
parentInstall manual pages to <prefix>/share/man (diff)
downloadsway-39bcad23dd02d7e477bc4bfc1977c1f08108dcad.tar.gz
sway-39bcad23dd02d7e477bc4bfc1977c1f08108dcad.tar.zst
sway-39bcad23dd02d7e477bc4bfc1977c1f08108dcad.zip
Merge pull request #59 from lkundrak/man
Install manual pages to <prefix>/share/man
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9a49c169..b4bdf756 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -62,10 +62,10 @@ ADD_CUSTOM_TARGET(man ALL
62 62
63INSTALL( 63INSTALL(
64 FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.1 64 FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.1
65 DESTINATION ${CMAKE_INSTALL_PREFIX}/man/man1 65 DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1
66) 66)
67 67
68INSTALL( 68INSTALL(
69 FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.5 69 FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.5
70 DESTINATION ${CMAKE_INSTALL_PREFIX}/man/man5 70 DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man5
71) 71)