From 43d798dea36823f7316f0c0dc0cbae9775077237 Mon Sep 17 00:00:00 2001 From: Evan Hunt Date: Mon, 5 Jan 2015 14:31:23 -0800 Subject: [PATCH] [master] suppress table of contents in notes.html and notes.pdf --- doc/arm/Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/arm/Makefile.in b/doc/arm/Makefile.in index 6bc57e647e..94fa457a23 100644 --- a/doc/arm/Makefile.in +++ b/doc/arm/Makefile.in @@ -47,11 +47,11 @@ docclean manclean maintainer-clean distclean:: notes.html: notes-wrapper.xml notes.xml releaseinfo.xml pkgversion.xml noteversion.xml expand notes-wrapper.xml | \ - ${XSLTPROC} -o notes.html ../xsl/isc-docbook-html.xsl - + ${XSLTPROC} --stringparam generate.toc "book toc" -o notes.html ../xsl/isc-docbook-html.xsl - notes.tex: notes-wrapper.xml notes.xml releaseinfo.xml pkgversion.xml noteversion.xml expand notes-wrapper.xml | \ - ${XSLTPROC} ${top_srcdir}/doc/xsl/pre-latex.xsl - | \ + ${XSLTPROC} --stringparam generate.toc "book toc" ${top_srcdir}/doc/xsl/pre-latex.xsl - | \ ${XSLTPROC} ${top_srcdir}/doc/xsl/isc-notes-latex.xsl - | \ @PERL@ latex-fixup.pl >$@.tmp if test -s $@.tmp; then mv $@.tmp $@; else rm -f $@.tmp; exit 1; fi