Makefile: Fail properly if asciidoc is missing
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
66dd58a5cb
commit
3376e5d702
2
Makefile
2
Makefile
|
@ -35,7 +35,7 @@ changelogs:
|
|||
manpages:
|
||||
mkdir -p html/doc/manpages
|
||||
cd src/manpages; for manpage in *.?.txt; \
|
||||
do asciidoc -a icons -b xhtml11 -o ../../html/doc/manpages/`basename $${manpage} .txt`.html $$manpage; \
|
||||
do asciidoc -a icons -b xhtml11 -o ../../html/doc/manpages/`basename $${manpage} .txt`.html $$manpage || exit 1; \
|
||||
done
|
||||
|
||||
.PHONY: authors.mdwn changelogs manpages
|
||||
|
|
Loading…
Reference in New Issue