Am 20. Juli 2011 20:33 schrieb Ben Lipton <[email protected]>:
> --- a/doc/Makefile.am
> +++ b/doc/Makefile.am
>  %.html: %.rst
> -       @test -n "$(RST2HTML)" || \
> -           { echo 'rst2html' not found, docs will not be built; exit 1; }
> -       $(RST2HTML) $< > $@
> +       @if test -n "$(RST2HTML)"; then\
> +           $(RST2HTML) $< > $@;\
> +       else\
> +           echo 'rst2html' not found, docs will not be built;\

Just quoting “rst2html” is pointless here. Either quote the full
message or nothing.

> +       fi

Rest LGTM.

Reply via email to