summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/cli/Makefile.am2
-rw-r--r--src/plugins/Makefile.am2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cli/Makefile.am b/src/cli/Makefile.am
index fa28a2bb..bc02236e 100644
--- a/src/cli/Makefile.am
+++ b/src/cli/Makefile.am
@@ -50,7 +50,7 @@ MAN_TXT = \
man1_MANS = ${MAN_TXT:%.txt=%.1}
%.1 %.5 %.7: %.xml
- $(XMLTO_SILENT) xmlto man $< > /dev/null 2>&1
+ $(XMLTO_SILENT) xmlto man $< 2>&1 | sed '/Note/d'
%.xml: %.txt ../../asciidoc.conf
$(ASCIIDOC_SILENT) asciidoc --backend=docbook --doctype=manpage --conf-file ../../asciidoc.conf -aabrt_version=$(PACKAGE_VERSION) -o $@ $<
diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am
index ab2e637c..699f13bd 100644
--- a/src/plugins/Makefile.am
+++ b/src/plugins/Makefile.am
@@ -72,7 +72,7 @@ MAN_TXT = \
man1_MANS = ${MAN_TXT:%.txt=%.1}
%.1 %.5 %.7: %.xml
- $(XMLTO_SILENT) xmlto man $< > /dev/null
+ $(XMLTO_SILENT) xmlto man $< 2>&1 | sed '/Note/d'
%.xml: %.txt ../../asciidoc.conf
$(ASCIIDOC_SILENT) asciidoc --backend=docbook --doctype=manpage --conf-file ../../asciidoc.conf -aabrt_version=$(PACKAGE_VERSION) -o $@ $<