do not rebuild manpage by default

This commit is contained in:
Axel Kittenberger 2016-11-25 15:09:27 +01:00
parent 4d2c793b01
commit 25ce41a136
2 changed files with 19 additions and 17 deletions

View File

@ -85,7 +85,7 @@ add_custom_command( OUTPUT doc/manpage/lsyncd.1
COMMAND a2x --format=manpage doc/manpage/lsyncd.1.txt COMMAND a2x --format=manpage doc/manpage/lsyncd.1.txt
DEPENDS doc/manpage/lsyncd.1.txt DEPENDS doc/manpage/lsyncd.1.txt
) )
add_custom_target( manpage ALL DEPENDS doc/manpage/lsyncd.1 ) add_custom_target( manpage DEPENDS doc/manpage/lsyncd.1 )
# compiling and linking it all together # compiling and linking it all together
add_executable( lsyncd ${LSYNCD_SRC} ) add_executable( lsyncd ${LSYNCD_SRC} )

View File

@ -6,6 +6,8 @@
"omit-link-times" "omit-link-times"
change: compatible with Lua5.3 (along with 5.1 and 5.2) change: compatible with Lua5.3 (along with 5.1 and 5.2)
change: _verbatim forced for 'exitcodes' entry. change: _verbatim forced for 'exitcodes' entry.
change: manpage is not rebuild by default.
it is provided precompiled.
fix: ']' is not escaped for rsync rules, since rsync only applies fix: ']' is not escaped for rsync rules, since rsync only applies
doesn't applie pattern matching if no other pattern chars doesn't applie pattern matching if no other pattern chars
are found. are found.