From 5d7d1a7ee2aec05639398e6d93e998ae418d0065 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Fri, 19 Dec 2008 17:16:35 +0100 Subject: [PATCH] src/Makefile: Do not print the command when checking for POD ERRORS. Else, the build output would include the word "error" in a cryptically looking paragraph which might confuse users. --- src/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 47268f51..1b46b9ba 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -797,7 +797,7 @@ EXTRA_DIST += collectd-email.pod collectd-exec.pod collectd-nagios.pod \ .pod.1: pod2man --release=$(VERSION) --center=$(PACKAGE) $< \ >.pod2man.tmp 2>/dev/null && mv -f .pod2man.tmp $@ || true - if grep '\' $@ >/dev/null 2>&1; \ + @if grep '\' $@ >/dev/null 2>&1; \ then \ echo "$@ has some POD errors!"; false; \ fi @@ -805,7 +805,7 @@ EXTRA_DIST += collectd-email.pod collectd-exec.pod collectd-nagios.pod \ .pod.5: pod2man --section=5 --release=$(VERSION) --center=$(PACKAGE) $< \ >.pod2man.tmp 2>/dev/null && mv -f .pod2man.tmp $@ || true - if grep '\' $@ >/dev/null 2>&1; \ + @if grep '\' $@ >/dev/null 2>&1; \ then \ echo "$@ has some POD errors!"; false; \ fi -- 2.11.0