man page: gzip should no longer delete generated file, preventing constant rebuilding

This commit is contained in:
Nicholas O'Connor 2017-07-05 14:05:21 -07:00
parent 0b9b57117f
commit e735768e52

View File

@ -29,7 +29,7 @@ else(NOT RONN OR NOT GZIP)
add_custom_command(OUTPUT "${outfile}.gz"
DEPENDS "${outfile}"
COMMAND "${GZIP}"
ARGS -f "${outfile}"
ARGS -fk "${outfile}"
)
set(manpages ${manpages} "${outfile}.gz")
endmacro(generate_manpage)