Dont bzip2 the man files, let the distribution compress them as they wish

This commit is contained in:
Micke Prag 2009-08-21 09:15:45 +00:00
parent b68ef974fe
commit a573f0e669
2 changed files with 4 additions and 4 deletions

View file

@ -48,9 +48,9 @@ IF (UNIX)
ADD_CUSTOM_COMMAND(
TARGET rfcmd
POST_BUILD
COMMAND help2man ./rfcmd | bzip2 -c > rfcmd.1.bz2
COMMAND help2man ./rfcmd > rfcmd.1
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating man file rfcmd.1.bz2"
COMMENT "Generating man file rfcmd.1"
)
ENDIF (UNIX)

View file

@ -32,9 +32,9 @@ IF (UNIX)
ADD_CUSTOM_COMMAND(
TARGET tdtool
POST_BUILD
COMMAND help2man ./tdtool | bzip2 -c > tdtool.1.bz2
COMMAND help2man ./tdtool > tdtool.1
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
COMMENT "Generating man file tdtool.1.bz2"
COMMENT "Generating man file tdtool.1"
)
ENDIF (UNIX)