From 6800c1a6ad2596d7c3c242fe144ea9fbc07dfe7a Mon Sep 17 00:00:00 2001 From: Eugene Shalygin Date: Mon, 7 Mar 2016 15:03:22 +0100 Subject: [PATCH] cmake: fix man installation Fix copy-n-paste error: for non-GUI build we have to install qbittorrent-nox.1, but not qbittorrent.1. --- dist/unix/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/unix/CMakeLists.txt b/dist/unix/CMakeLists.txt index f935ef090..c8dbf25d7 100644 --- a/dist/unix/CMakeLists.txt +++ b/dist/unix/CMakeLists.txt @@ -13,7 +13,7 @@ endif(SYSTEMD) if (GUI) list(APPEND MAN_FILES ${qBittorrent_SOURCE_DIR}/doc/qbittorrent.1) else (GUI) - list(APPEND MAN_FILES ${qBittorrent_SOURCE_DIR}/doc/qbittorrent.1) + list(APPEND MAN_FILES ${qBittorrent_SOURCE_DIR}/doc/qbittorrent-nox.1) endif (GUI) install(FILES ${MAN_FILES}