pvpgn / pvpgn-server

Next generation of PvPGN server
https://pvpgn.pro
GNU General Public License v2.0
541 stars 155 forks source link

man pages are not installed correctly #467

Open onlyjob opened 2 years ago

onlyjob commented 2 years ago

Man pages are not installed to correct location. .1 and .5 man pages should be installed to /usr/share/man/man1 and /usr/share/man/man5 respectively. The following patch makes the necessary corrections:

--- a/man/CMakeLists.txt
+++ b/man/CMakeLists.txt
@@ -1,4 +1,7 @@
-install(FILES bnbot.1 bnchat.1 bnetd.1 bnetd.conf.5 bnftp.1 bni2tga.1 
+install(FILES bnbot.1 bnchat.1 bnetd.1 bnftp.1 bni2tga.1 
     bnibuild.1 bniextract.1 bnilist.1 bnpass.1 bnpcap.1 bnproxy.1 bnstat.1 
-    bntext.5 bntrackd.1 tgainfo.1
-    DESTINATION ${MANDIR})
+    bntrackd.1 tgainfo.1
+    DESTINATION ${MAN_INSTALL_DIR}/man1)
+
+install(FILES bnetd.conf.5 bntext.5
+    DESTINATION ${MAN_INSTALL_DIR}/man5)