bug-gnulib
[Top][All Lists]
Advanced

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

avoid warning from makeinfo


From: Bruno Haible
Subject: avoid warning from makeinfo
Date: Sat, 7 Jul 2007 00:56:10 +0200
User-agent: KMail/1.5.4

Just saw this in the doc directory:

$ make html
makeinfo --no-split --html -o gnulib.html gnulib.texi
/packages/GNULIB/gnulib-work/doc//gnulib.texi:597: warning: node `Function 
Substitutes' has been referenced 1119 times.

I don't know what the purpose of this warning is, therefore I'm shutting it
up:


2007-07-06  Bruno Haible  <address@hidden>

        * doc/Makefile (TEXI2HTML): Specify a --reference-limit.

--- doc/Makefile        1 May 2007 15:14:20 -0000       1.7
+++ doc/Makefile        6 Jul 2007 22:55:36 -0000
@@ -8,7 +8,7 @@
 
 doc = gnulib
 
-TEXI2HTML = $(MAKEINFO) --no-split --html
+TEXI2HTML = $(MAKEINFO) --no-split --reference-limit=2000 --html
 %.html: %.texi
        $(TEXI2HTML) -o $@ $<
 





reply via email to

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