libtool-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [FYI] branch-1-5


From: Peter O'Gorman
Subject: Re: [FYI] branch-1-5
Date: Sat, 12 Feb 2005 23:56:29 +0900
User-agent: Mozilla Thunderbird 1.0 (Macintosh/20041206)

Alexandre Duret-Lutz wrote:
"Peter" == Peter O'Gorman <address@hidden> writes:


 Peter> +    $(TEXI2HTML) -I $(top_srcdir)/doc -monolithic -number -verbose 
manual.texi

Could you consider `makeinfo --html --no-split' instead of texi2html?
(Or maybe better: use the gendocs.sh script distributed with texinfo.)


This sounds reasonable to me, I used that and applied this attached patch.

Peter

(*) I just did so on http://www-src.lip6.fr/~Alexandre.Duret-Lutz/autotools.html
    and BTW if any of you feel like reviewing the libtool part
    of this tutorial, do not hesitate :)

I'll look later, probably I'll learn something though rather than have any input :)

Peter
--
Peter O'Gorman - http://www.pogma.com
Index: ChangeLog
from  Alexandre Duret-Lutz  <address@hidden>,
        Peter O'Gorman  <address@hidden>

        * Makefile.am (web-manual): Use makeinfo, not texi2html.

Index: Makefile.am
===================================================================
RCS file: /cvsroot/libtool/libtool/Makefile.am,v
retrieving revision 1.69.2.12
diff -u -3 -p -u -r1.69.2.12 Makefile.am
--- Makefile.am 5 Feb 2005 13:49:16 -0000 1.69.2.12
+++ Makefile.am 12 Feb 2005 14:47:31 -0000
@@ -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 g
 
 .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
+

reply via email to

[Prev in Thread] Current Thread [Next in Thread]