From c82d891e225745026c358a052e7c4c8c4788fbea Mon Sep 17 00:00:00 2001 From: "Ivan A. Melnikov" Date: Wed, 24 Aug 2022 19:05:36 +0400 Subject: [PATCH] Add section suffix to man pages `man`, at least on some linux distros, ignores files that don't have have the numeric suffix that corresponds to the man page section. This commit adds the suffix to the tools man pages. Signed-off-by: Ivan A. Melnikov --- clients/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clients/CMakeLists.txt b/clients/CMakeLists.txt index cf10957b..000386f5 100644 --- a/clients/CMakeLists.txt +++ b/clients/CMakeLists.txt @@ -8,7 +8,7 @@ if(SFIZZ_JACK) install(TARGETS sfizz_jack DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT "jack" OPTIONAL) install(FILES ${PROJECT_BINARY_DIR}/clients/sfizz_jack.man DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 - RENAME sfizz_jack COMPONENT "jack" OPTIONAL) + RENAME sfizz_jack.1 COMPONENT "jack" OPTIONAL) endif() if(SFIZZ_RENDER) @@ -18,5 +18,5 @@ if(SFIZZ_RENDER) configure_file(sfizz_render.man.in sfizz_render.man @ONLY) install(TARGETS sfizz_render DESTINATION ${CMAKE_INSTALL_BINDIR} COMPONENT "render" OPTIONAL) install(FILES ${PROJECT_BINARY_DIR}/clients/sfizz_render.man DESTINATION ${CMAKE_INSTALL_MANDIR}/man1 - RENAME sfizz_render COMPONENT "render" OPTIONAL) + RENAME sfizz_render.1 COMPONENT "render" OPTIONAL) endif()