* build-aux/tex.mk (TEXI2HTML): Disable flag `--tex4ht'.
---
ChangeLog | 6 ++++++
build-aux/tex.mk | 6 +++++-
2 files changed, 11 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index d028cf1..299865a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-03-30 Roland Levillain <roland(a)lrde.epita.fr>
+
+ Revert to HeVeA to generate HTML from LaTeX.
+
+ * build-aux/tex.mk (TEXI2HTML): Disable flag `--tex4ht'.
+
2010-03-23 Roland Levillain <roland(a)lrde.epita.fr>
* Makefile.am (LOCAL_RECURSIVE_TARGETS): Remove doc.
diff --git a/build-aux/tex.mk b/build-aux/tex.mk
index d93110d..da35475 100644
--- a/build-aux/tex.mk
+++ b/build-aux/tex.mk
@@ -27,7 +27,11 @@ TEXI2DVI_FLAGS = --tidy --build-dir=tmp.t2d --batch
TEXI2PDF = $(TEXI2DVI) --pdf
TEXI2PDF_FLAGS = $(TEXI2DVI_FLAGS)
-TEXI2HTML = $(TEXI2DVI) --html --tex4ht
+# FIXME: Switch back to HeVeA, since we currently rely on its outputs
+# to produce intermediate products later read by Doxygen. When these
+# intermediate files are produced directly (from LaTeX sources),
+# switch again to TeX4ht.
+TEXI2HTML = $(TEXI2DVI) --html # --tex4ht
TEXI2HTML_FLAGS = $(TEXI2DVI_FLAGS)
SUFFIXES = .tex .pdf
--
1.5.6.5