From 37ed8300cbf1ef76c6bffbf8e785df237b9a8602 Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 18 Dec 2019 06:49:30 -0500 Subject: [PATCH] fix up man page destination path --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7db8b802d..a3363fcdf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -202,11 +202,11 @@ file(GLOB MANPAGES1 CONFIGURE_DEPENDS doc/man/man1/*) file(GLOB MANPAGES3 CONFIGURE_DEPENDS doc/man/man3/*) install(FILES ${MANPAGES1} - DESTINATION ${CMAKE_INSTALL_PREFIX}/man/man1 + DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man1 ) install(FILES ${MANPAGES3} - DESTINATION ${CMAKE_INSTALL_PREFIX}/man/man3 + DESTINATION ${CMAKE_INSTALL_PREFIX}/share/man/man3 ) install(TARGETS notcurses-demo DESTINATION bin)