diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-01 15:05:59 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-01 15:05:59 +0000 |
commit | be39b9ce5c5cdf2391cecd27c128fb5d27fe5278 (patch) | |
tree | 6ec7b2f0aef7314bada561e43d843742738c6a10 /flite-0001-Fixed-texi2html-ambiguity.patch | |
parent | fc176100ecbe5e85c7b3bff5d7d899e37b78d1fc (diff) |
automatic import of fliteopeneuler24.03_LTSopeneuler23.09
Diffstat (limited to 'flite-0001-Fixed-texi2html-ambiguity.patch')
-rw-r--r-- | flite-0001-Fixed-texi2html-ambiguity.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/flite-0001-Fixed-texi2html-ambiguity.patch b/flite-0001-Fixed-texi2html-ambiguity.patch new file mode 100644 index 0000000..bb0e407 --- /dev/null +++ b/flite-0001-Fixed-texi2html-ambiguity.patch @@ -0,0 +1,20 @@ +From: Peter Lemenkov <lemenkov@gmail.com> +Date: Fri, 8 Jan 2016 18:26:03 +0300 +Subject: [PATCH] Fixed texi2html ambiguity + +Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> + +diff --git a/doc/Makefile b/doc/Makefile +index 12a5720..8fb9a03 100644 +--- a/doc/Makefile ++++ b/doc/Makefile +@@ -50,7 +50,8 @@ doc: flite.html flite.pdf + flite.html: flite.texi + @ if [ ! -d html ] ; \ + then mkdir -p html ; fi +- (cd html; texi2html -number -split_chapter ../flite.texi) ++ (cd html; texi2html -number-sections -split_chapter ../flite.texi) ++ @mv html/flite/*.html html/ + @ for i in html/*.html ; \ + do \ + sed 's/<BODY>/<BODY bgcolor="#ffffff">/' $$i >ttt.html; \ |