Browse Source

cmake: fix man installation

Fix copy-n-paste error: for non-GUI build we have to install
qbittorrent-nox.1, but not qbittorrent.1.
adaptive-webui-19844
Eugene Shalygin 9 years ago
parent
commit
6800c1a6ad
  1. 2
      dist/unix/CMakeLists.txt

2
dist/unix/CMakeLists.txt vendored

@ -13,7 +13,7 @@ endif(SYSTEMD) @@ -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}

Loading…
Cancel
Save