Else, the build output would include the word "error" in a cryptically looking
paragraph which might confuse users.
.pod.1:
pod2man --release=$(VERSION) --center=$(PACKAGE) $< \
>.pod2man.tmp 2>/dev/null && mv -f .pod2man.tmp $@ || true
- if grep '\<POD ERRORS\>' $@ >/dev/null 2>&1; \
+ @if grep '\<POD ERRORS\>' $@ >/dev/null 2>&1; \
then \
echo "$@ has some POD errors!"; false; \
fi
.pod.5:
pod2man --section=5 --release=$(VERSION) --center=$(PACKAGE) $< \
>.pod2man.tmp 2>/dev/null && mv -f .pod2man.tmp $@ || true
- if grep '\<POD ERRORS\>' $@ >/dev/null 2>&1; \
+ @if grep '\<POD ERRORS\>' $@ >/dev/null 2>&1; \
then \
echo "$@ has some POD errors!"; false; \
fi