tinycc-devel
[Top][All Lists]
Advanced

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

[Tinycc-devel] Option number is ambiguous (number-footnotes, number-sect


From: Austin English
Subject: [Tinycc-devel] Option number is ambiguous (number-footnotes, number-sections) (texi2html) (patch)
Date: Fri, 15 Feb 2013 10:14:23 -0800

This was around before 0.9.26, but I forgot to report it:

make[1]: Leaving directory `/home/austin/src/tinycc/lib'
./texi2pod.pl tcc-doc.texi tcc.pod
pod2man --section=1 --center=" " --release=" " tcc.pod > tcc.1
texi2html -monolithic -number tcc-doc.texi
Option number is ambiguous (number-footnotes, number-sections)
Try `texi2html --help' for more information.
make: [tcc-doc.html] Error 2 (ignored)
makeinfo tcc-doc.texi

address@hidden ~/src/tinycc $ texi2html --version
5.0

address@hidden ~/src/tinycc $ uname -a
Linux aw25 3.5.3-gentoo #4 SMP Wed Oct 24 21:55:24 PDT 2012 x86_64
Intel(R) Core(TM) i7 CPU 960 @ 3.20GHz GenuineIntel GNU/Linux

The following patch fixes it:
diff --git a/Makefile b/Makefile
index 705b585..9376132 100644
--- a/Makefile
+++ b/Makefile
@@ -300,7 +300,7 @@ endif

 # documentation and man page
 tcc-doc.html: tcc-doc.texi
-       -texi2html -monolithic -number $<
+       -texi2html -monolithic -number-sections $<

 tcc.1: tcc-doc.texi
        -$(top_srcdir)/texi2pod.pl $< tcc.pod

-- 
-Austin



reply via email to

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