changeset 2620:b2e5f719fa0b octave-forge

Add -verbosity=0 to latex2html commands so that the url link to a non existent file is not added
author adb014
date Sat, 07 Oct 2006 19:02:50 +0000
parents f783745f410b
children 6ec6a7b429b7
files extra/MacOSX/doc/Makefile extra/symband/doc/Makefile main/optim/doc/Makefile main/vrml/doc/Makefile
diffstat 4 files changed, 12 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/extra/MacOSX/doc/Makefile	Sat Oct 07 19:01:57 2006 +0000
+++ b/extra/MacOSX/doc/Makefile	Sat Oct 07 19:02:50 2006 +0000
@@ -10,8 +10,10 @@
 	latex $< > /dev/null 2>&1
 	dvipdf $(@:.pdf=.dvi)
 
+# Note verbosity=0 as well as making latex2html quieter, has the side-effect
+# of not including a url to the raw text, which it'll get wrong
 html/index.html : $(TEX)
-	latex2html $<
+	latex2html -verbosity=0 $<
 	if [ -e "html" ]; then \
 	  rm -fr html; \
 	fi; \
--- a/extra/symband/doc/Makefile	Sat Oct 07 19:01:57 2006 +0000
+++ b/extra/symband/doc/Makefile	Sat Oct 07 19:02:50 2006 +0000
@@ -10,8 +10,10 @@
 	latex $< > /dev/null 2>&1
 	dvipdf $(@:.pdf=.dvi)
 
+# Note verbosity=0 as well as making latex2html quieter, has the side-effect
+# of not including a url to the raw text, which it'll get wrong
 html/index.html : $(TEX)
-	latex2html $<
+	latex2html -verbosity=0 $<
 	if [ -e "html" ]; then \
 	  rm -fr html; \
 	fi; \
--- a/main/optim/doc/Makefile	Sat Oct 07 19:01:57 2006 +0000
+++ b/main/optim/doc/Makefile	Sat Oct 07 19:02:50 2006 +0000
@@ -18,8 +18,10 @@
 	latex $< > /dev/null 2>&1
 	dvipdf $(@:.pdf=.dvi)
 
+# Note verbosity=0 as well as making latex2html quieter, has the side-effect
+# of not including a url to the raw text, which it'll get wrong
 html/%/index.html : %.tex
-	latex2html $<
+	latex2html -verbosity=0 $<
 	if [ ! -e "html" ]; then \
 	  mkdir html; \
 	fi; \
--- a/main/vrml/doc/Makefile	Sat Oct 07 19:01:57 2006 +0000
+++ b/main/vrml/doc/Makefile	Sat Oct 07 19:02:50 2006 +0000
@@ -10,8 +10,10 @@
 	latex $< > /dev/null 2>&1
 	dvipdf $(@:.pdf=.dvi)
 
+# Note verbosity=0 as well as making latex2html quieter, has the side-effect
+# of not including a url to the raw text, which it'll get wrong
 html/index.html : $(TEX)
-	latex2html $<
+	latex2html -verbosity=0 $<
 	if [ -e "html" ]; then \
 	  rm -fr html; \
 	fi; \