[458843] Fix man page installation for cmake.

Thanks to Alexandre Zia.

Bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=458843
This commit is contained in:
Roger A. Light 2015-01-30 21:29:08 +00:00
parent 22e09ae613
commit 9389d10636
2 changed files with 6 additions and 5 deletions

View File

@ -66,6 +66,7 @@ Broker:
#431780. #431780.
- Fix hang if pattern acl contains a %u but an anonymous client connect. - Fix hang if pattern acl contains a %u but an anonymous client connect.
Closes bug #455402. Closes bug #455402.
- Fix man page installation with cmake. Closes bug #458843.
Clients: Clients:
- Both clients can now load default configuration options from a file. - Both clients can now load default configuration options from a file.

View File

@ -1,5 +1,5 @@
install(FILES mosquitto_passwd.1 mosquitto_pub.1 mosquitto_sub.1 DESTINATION $(MANDIR)/man1) install(FILES mosquitto_passwd.1 mosquitto_pub.1 mosquitto_sub.1 DESTINATION ${MANDIR}/man1)
install(FILES libmosquitto.3 DESTINATION $(MANDIR)/man3) install(FILES libmosquitto.3 DESTINATION ${MANDIR}/man3)
install(FILES mosquitto.conf.5 DESTINATION $(MANDIR)/man5) install(FILES mosquitto.conf.5 DESTINATION ${MANDIR}/man5)
install(FILES mosquitto-tls.7 mqtt.7 DESTINATION $(MANDIR)/man7) install(FILES mosquitto-tls.7 mqtt.7 DESTINATION ${MANDIR}/man7)
install(FILES mosquitto.8 DESTINATION $(MANDIR)/man8) install(FILES mosquitto.8 DESTINATION ${MANDIR}/man8)