mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
doc/Makefile: don't hide xmlto stderr
In case asciidoc is installed and xmlto is not, make returns an error but there's no diagnostics shown, since "xmlto: command not found" goes to /dev/null. Remove the redirect. Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
This commit is contained in:
parent
c98af78c58
commit
8477875dc2
1 changed files with 2 additions and 2 deletions
|
|
@ -54,7 +54,7 @@ ifneq ($(USE_ASCIIDOCTOR),)
|
|||
$(Q) $(ASCIIDOC) -b manpage -d manpage -o $@ $<
|
||||
else
|
||||
$(Q) $(ASCIIDOC) -b docbook -d manpage -o $(patsubst %.1,%.xml,$@) $<
|
||||
$(Q) $(XMLTO) man -m custom.xsl $(patsubst %.1,%.xml,$@) 2>/dev/null
|
||||
$(Q) $(XMLTO) man -m custom.xsl $(patsubst %.1,%.xml,$@)
|
||||
endif
|
||||
|
||||
%.8: %.txt $(FOOTER) custom.xsl
|
||||
|
|
@ -63,7 +63,7 @@ ifneq ($(USE_ASCIIDOCTOR),)
|
|||
$(Q) $(ASCIIDOC) -b manpage -d manpage -o $@ $<
|
||||
else
|
||||
$(Q) $(ASCIIDOC) -b docbook -d manpage -o $(patsubst %.8,%.xml,$@) $<
|
||||
$(Q) $(XMLTO) man -m custom.xsl $(patsubst %.8,%.xml,$@) 2>/dev/null
|
||||
$(Q) $(XMLTO) man -m custom.xsl $(patsubst %.8,%.xml,$@)
|
||||
endif
|
||||
|
||||
%.ps: %.1
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue