]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
Peter O'Gorman <peter@pogma.com>
authorAlexandre Duret-Lutz <adl@gnu.org>
Sat, 12 Feb 2005 14:49:11 +0000 (14:49 +0000)
committerPeter O'Gorman <peter@pogma.com>
Sat, 12 Feb 2005 14:49:11 +0000 (14:49 +0000)
* Makefile.am (web-manual): Use makeinfo, not texi2html.

ChangeLog
Makefile.am

index ab3f3d0147517ee2abfa0f5d9cb4e4f24d9f8526..9a87ac980b8a8e13dcb7f28ff6dec89a53ab74ad 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-02-12  Alexandre Duret-Lutz  <adl@gnu.org>,
+           Peter O'Gorman  <peter@pogma.com>
+
+       * Makefile.am (web-manual): Use makeinfo, not texi2html.
+
 2005-02-12  Peter O'Gorman  <peter@pogma.com>
 
        * ChangeLog: Upped version to 1.5.15a.
index b9bd63229caae37eb7349ab557f389747cd72357..e4c8e6d86ec9b9abd29d28a6d4523480202b8efa 100644 (file)
@@ -87,7 +87,7 @@ uninstall-local:
 ##  not to anybody else (inspiration from automake/Makefile.am).    ##
 ## ---------------------------------------------------------------- ##
 
-TEXI2HTML = texi2html
+MAKEINFO = makeinfo
 
 .PHONY: cvs-release
 cvs-release: version-check prev-tarball cvs-news fetch cvs-commit cvs-dist deltas web-manual
@@ -270,6 +270,6 @@ delta-xdelta: prev-tarball new-tarball got-xdelta
 
 .PHONY: web-manual
 web-manual:
-       @$(LN_S) $(top_srcdir)/doc/libtool.texi manual.texi
-       $(TEXI2HTML) -I $(top_srcdir)/doc -monolithic -number -verbose manual.texi
-       @rm -f manual.texi
+       $(MAKEINFO) -I $(top_srcdir)/doc --html --no-split -o manual.html \
+       $(top_srcdir)/doc/libtool.texi
+