By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 3122
Collapse All | Expand All

(-)libr-trinity-14.0.8-orig/man/CMakeLists.txt (-4 / +5 lines)
Lines 9-26 Link Here
9
#
9
#
10
#################################################
10
#################################################
11
11
12
file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/man3)
12
13
13
add_custom_target( man ALL DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/man3 )
14
add_custom_target( man ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/man3 )
14
15
15
add_custom_command(
16
add_custom_command(
16
  OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/man3
17
  OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/man3
17
  COMMAND doxygen ../doc/libr.cfg
18
  COMMAND doxygen ../doc/libr.cfg
18
  WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
19
  WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
19
  COMMENT "Generate manpages"
20
  COMMENT "Generate manpages"
20
)
21
)
21
22
22
install(
23
install(
23
  DIRECTORY man3
24
  DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/man3
24
  DESTINATION ${MAN_INSTALL_DIR}
25
  DESTINATION ${MAN_INSTALL_DIR}
25
  PATTERN "_*" EXCLUDE
26
  PATTERN "_*" EXCLUDE
26
)
27
)

Return to bug 3122