- Fixed bug #1185, correcting man page install location for out-of-tree
  builds (thanks to Jakub Wilk).
This commit is contained in:
Paul Beckingham 2013-03-02 18:39:53 -05:00
parent 6aa0277749
commit 1b3165a18f
2 changed files with 4 additions and 2 deletions

View file

@ -83,6 +83,8 @@ Bugs
package (thanks to Jakub Wilk). package (thanks to Jakub Wilk).
+ Fixed bug #1183, correcting error message typos (thanks to Jakub Wilk). + Fixed bug #1183, correcting error message typos (thanks to Jakub Wilk).
+ Fixed bug #1184, correcting man page formatting (thanks to Jakub Wilk). + Fixed bug #1184, correcting man page formatting (thanks to Jakub Wilk).
+ Fixed bug #1185, correcting man page install location for out-of-tree
builds (thanks to Jakub Wilk).
+ Fixed bug #1189, which caused wide Asian UTF8 characters to be measured as + Fixed bug #1189, which caused wide Asian UTF8 characters to be measured as
narrow characters (thanks to Roy Zuo). narrow characters (thanks to Roy Zuo).
+ Improved hyphenation by splitting on commas (even if no whitespace after). + Improved hyphenation by splitting on commas (even if no whitespace after).

View file

@ -7,9 +7,9 @@ foreach (man_FILE ${man_FILES})
${CMAKE_CURRENT_SOURCE_DIR}/man/${man_FILE}) ${CMAKE_CURRENT_SOURCE_DIR}/man/${man_FILE})
endforeach (man_FILE) endforeach (man_FILE)
install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/man/ DESTINATION ${TASK_MAN1DIR} install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/man/ DESTINATION ${TASK_MAN1DIR}
FILES_MATCHING PATTERN "*.1") FILES_MATCHING PATTERN "*.1")
install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/man/ DESTINATION ${TASK_MAN5DIR} install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/man/ DESTINATION ${TASK_MAN5DIR}
FILES_MATCHING PATTERN "*.5") FILES_MATCHING PATTERN "*.5")
install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/rc DESTINATION ${TASK_DOCDIR}) install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/rc DESTINATION ${TASK_DOCDIR})