sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 478f375b402126742653284513231c53dde47325
parent 786bb87b34625ceb32738aedd7e45e0065b0043d
Author: Lubomir Rintel <lkundrak@v3.sk>
Date:   Tue, 18 Aug 2015 10:40:24 +0200

Install manual pages to <prefix>/share/man

Use a FHS compliant location instead of /usr/man compat symlink. Some distros
don't ship that one.

Diffstat:
MCMakeLists.txt | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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 )