From 478f375b402126742653284513231c53dde47325 Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Tue, 18 Aug 2015 10:40:24 +0200 Subject: Install manual pages to /share/man Use a FHS compliant location instead of /usr/man compat symlink. Some distros don't ship that one. --- CMakeLists.txt | 4 ++-- 1 file 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 INSTALL( FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.1 - DESTINATION ${CMAKE_INSTALL_PREFIX}/man/man1 + DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1 ) INSTALL( FILES ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/sway.5 - DESTINATION ${CMAKE_INSTALL_PREFIX}/man/man5 + DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man5 ) -- cgit v1.2.3-54-g00ecf