summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2001-10-26 09:33:25 +0000
committerBruno Haible <bruno@clisp.org>2001-10-26 09:33:25 +0000
commit1995365b216199b1718380b98fcc70dd10a2c069 (patch)
tree990b3fdc1f602c5a86471cd74197f306cc3ddcf8 /doc
parentfc61459c4058eb2e84b1c934b56c30c92e956826 (diff)
downloadexternal_gettext-1995365b216199b1718380b98fcc70dd10a2c069.zip
external_gettext-1995365b216199b1718380b98fcc70dd10a2c069.tar.gz
external_gettext-1995365b216199b1718380b98fcc70dd10a2c069.tar.bz2
Use our own fixed copy of texi2html.
Diffstat (limited to 'doc')
-rw-r--r--doc/ChangeLog6
-rw-r--r--doc/Makefile.am6
2 files changed, 9 insertions, 3 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 03489f6..5e253f5 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,9 @@
+2001-10-19 Bruno Haible <haible@clisp.cons.org>
+
+ * texi2html: New file, from texi2html-1.52 with modifications.
+ * Makefile.am (TEXI2HTML): Use @PERL@, not @TEXI2HTML@.
+ (gettext_toc.html): Update accordingly.
+
2001-10-11 Bruno Haible <haible@clisp.cons.org>
* msgattrib.texi: New file.
diff --git a/doc/Makefile.am b/doc/Makefile.am
index ce84685..77b55e8 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -129,7 +129,7 @@ uninstall-pdf:
# Documentation in HTML format.
-TEXI2HTML = @TEXI2HTML@
+TEXI2HTML = @PERL@ $(srcdir)/texi2html
html-monolithic: gettext.html
html-split: gettext_toc.html
@@ -138,8 +138,8 @@ gettext.html: gettext.texi version.texi $(gettext_TEXINFOS)
$(TEXI2HTML) -expandinfo -number -monolithic `if test -f gettext.texi; then echo gettext.texi; else echo $(srcdir)/gettext.texi; fi`
gettext_toc.html: gettext.texi version.texi $(gettext_TEXINFOS)
- case "$(TEXI2HTML)" in \
- *"/missing texi2html") \
+ case "@PERL@" in \
+ *"/missing perl") \
$(TEXI2HTML) -expandinfo -number -split_chapter `if test -f gettext.texi; then echo gettext.texi; else echo $(srcdir)/gettext.texi; fi` || exit 0 ;; \
*) $(RM) gettext_*.html ; \
$(TEXI2HTML) -expandinfo -number -split_chapter `if test -f gettext.texi; then echo gettext.texi; else echo $(srcdir)/gettext.texi; fi` ;; \