blob: 6f0e60313cfd31b93ac639e22e17b8cfd614c904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
Description: Debian wants to get rid of texi2html, see
https://wiki.debian.org/Texi2htmlTransition
Author: Paul Gevers <elbrus@debian.org>
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -50,7 +50,7 @@
flite.html: flite.texi
@ if [ ! -d html ] ; \
then mkdir -p html ; fi
- (cd html; texi2html -number -split_chapter ../flite.texi)
+ (cd html; texi2any --set-customization-variable TEXI2HTML=1 --split=chapter ../flite.texi)
@ if [ -d html/flite ] ; \
then mv html/flite/*.html html ; \
rmdir html/flite; fi
|