man/Makefile : Fail more gracefully.

This commit is contained in:
Erik de Castro Lopo 2012-09-19 18:03:19 +10:00
parent b21f190861
commit 023f06f6cb

View File

@ -17,10 +17,12 @@
if FLaC__HAS_DOCBOOK_TO_MAN
flac.1: flac.sgml
docbook-to-man $? > $@ || (docbook2man $? && mv FLAC.1 $@)
docbook-to-man $? > $@
(docbook2man $? && mv FLAC.1 $@)
metaflac.1: metaflac.sgml
docbook-to-man $? > $@ || (docbook2man $? && mv METAFLAC.1 $@)
docbook-to-man $? > $@
(docbook2man $? && mv METAFLAC.1 $@)
else
flac.1:
echo "*** Warning: docbook-to-man not found; man pages will not be built."