From: Sebastian Harl Date: Fri, 19 Dec 2008 16:16:35 +0000 (+0100) Subject: src/Makefile: Do not print the command when checking for POD ERRORS. X-Git-Tag: collectd-4.5.2~5 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=5d7d1a7ee2aec05639398e6d93e998ae418d0065;p=collectd.git 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. --- 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