summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2012-07-02 21:05:34 +0200
committerStefano Lattarini <stefano.lattarini@gmail.com>2012-07-02 21:13:24 +0200
commit67abae49732991b596e6fa6d9d93a925720abe64 (patch)
tree42078af0ef1e1ef4244f96d83253281c407eb3cc /contrib
parent18dac9077caa49f69aa39e306b146ae700e14e9c (diff)
downloadautomake-67abae49732991b596e6fa6d9d93a925720abe64.tar.gz
contrib: check-html: pass flags to rst2html invocations
Related to automake bug#11287. * contrib/t/check-html.am (.log.html): Here, passing $(AM_RST2HTMLFLAGS) and $(RST2HTMLFLAGS) (in that order). Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 'contrib')
-rw-r--r--contrib/check-html.am3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/check-html.am b/contrib/check-html.am
index 47e4f47ec..36a5dbef0 100644
--- a/contrib/check-html.am
+++ b/contrib/check-html.am
@@ -38,7 +38,8 @@ mostlyclean-check-html:
echo "cannot find rst2html, cannot create $@" >&2; \
exit 2; \
done; \
- $$r2h $< >$@-t && mv -f $@-t $@
+ $$r2h $(AM_RST2HTMLFLAGS) $(RST2HTMLFLAGS) $< >$@-t \
+ && mv -f $@-t $@
# Be sure to run check first, and then to convert the result.
# Beware of concurrent executions. Run "check" not "check-TESTS", as