From 4ec34580d5b1656e00df1549399998bd7696b045 Mon Sep 17 00:00:00 2001 From: Jonathan Bennett Date: Mon, 8 Aug 2016 13:33:14 -0500 Subject: [PATCH] Fix man page installation location --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 861940a..af8b779 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -87,7 +87,7 @@ add_custom_target(man ALL DEPENDS ${MAN_FILES}) install(TARGETS fwknop-gui DESTINATION bin) install(PROGRAMS fwknop-gui.desktop DESTINATION share/applications) install(FILES fwknop-gui.png DESTINATION share/pixmaps) - INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/fwknop-gui.8 DESTINATION ${CMAKE_INSTALL_PREFIX}/man/man1) + INSTALL(FILES fwknop-gui.8 DESTINATION share/man/man8) endif() if(IS_WIN32) include_directories( ${LIBQRENCODE_INCLUDE_DIR} )