Re: [Tinycc-devel] Option number is ambiguous (number-footnotes, number-sections) (texi2html) (patch)

2013-02-16 Thread Austin English
On Fri, Feb 15, 2013 at 5:42 PM, Thomas Preud'homme robo...@celest.fr wrote:
 Le vendredi 15 février 2013 19:14:23, Austin English a écrit :
 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

 austin@aw25 ~/src/tinycc $ texi2html --version
 5.0

 austin@aw25 ~/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

 Go ahead and commit it to the mob branch. As I said I'd like to release more
 often, around 1 release a year like before. Let's make the next release even
 better than this one :)

 Best regards,

 Thomas

It fails to push:
austin@debian-home:~/src/tinycc$ git push
ssh://m...@repo.or.cz/srv/git/tinycc.git docfix:mob
Counting objects: 5, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 320 bytes, done.
Total 3 (delta 2), reused 0 (delta 0)
The mob user cannot _create_ the 'mob' branch, sorry
error: hooks/update exited with error code 2
error: hook declined to update refs/heads/mob
To ssh://m...@repo.or.cz/srv/git/tinycc.git
 ! [remote rejected] docfix - mob (hook declined)
error: failed to push some refs to 'ssh://m...@repo.or.cz/srv/git/tinycc.git'

may be related to the problem someone else posted of not being able to
do a git pull?

-- 
-Austin

___
Tinycc-devel mailing list
Tinycc-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/tinycc-devel


Re: [Tinycc-devel] Option number is ambiguous (number-footnotes, number-sections) (texi2html) (patch)

2013-02-16 Thread Thomas Preud'homme
Le samedi 16 février 2013 23:05:54, Austin English a écrit :
 On Fri, Feb 15, 2013 at 5:42 PM, Thomas Preud'homme robo...@celest.fr 
wrote:
  Le vendredi 15 février 2013 19:14:23, Austin English a écrit :
  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
  
  austin@aw25 ~/src/tinycc $ texi2html --version
  5.0
  
  austin@aw25 ~/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
  
  Go ahead and commit it to the mob branch. As I said I'd like to release
  more often, around 1 release a year like before. Let's make the next
  release even better than this one :)
  
  Best regards,
  
  Thomas
 
 It fails to push:
 austin@debian-home:~/src/tinycc$ git push
 ssh://m...@repo.or.cz/srv/git/tinycc.git docfix:mob
 Counting objects: 5, done.
 Delta compression using up to 8 threads.
 Compressing objects: 100% (3/3), done.
 Writing objects: 100% (3/3), 320 bytes, done.
 Total 3 (delta 2), reused 0 (delta 0)
 The mob user cannot _create_ the 'mob' branch, sorry
 error: hooks/update exited with error code 2
 error: hook declined to update refs/heads/mob
 To ssh://m...@repo.or.cz/srv/git/tinycc.git
  ! [remote rejected] docfix - mob (hook declined)
 error: failed to push some refs to
 'ssh://m...@repo.or.cz/srv/git/tinycc.git'
 
 may be related to the problem someone else posted of not being able to
 do a git pull?

Indeed. I don't remember having done anything strange but that might be 
possible in the excitement of the release. I'll check that later. It should be 
fine now. Please try again.

Best regards,

Thomas


signature.asc
Description: This is a digitally signed message part.
___
Tinycc-devel mailing list
Tinycc-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/tinycc-devel


[Tinycc-devel] Option number is ambiguous (number-footnotes, number-sections) (texi2html) (patch)

2013-02-15 Thread Austin English
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

austin@aw25 ~/src/tinycc $ texi2html --version
5.0

austin@aw25 ~/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

___
Tinycc-devel mailing list
Tinycc-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/tinycc-devel


Re: [Tinycc-devel] Option number is ambiguous (number-footnotes, number-sections) (texi2html) (patch)

2013-02-15 Thread Thomas Preud'homme
Le vendredi 15 février 2013 19:14:23, Austin English a écrit :
 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
 
 austin@aw25 ~/src/tinycc $ texi2html --version
 5.0
 
 austin@aw25 ~/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

Go ahead and commit it to the mob branch. As I said I'd like to release more 
often, around 1 release a year like before. Let's make the next release even 
better than this one :)

Best regards,

Thomas


signature.asc
Description: This is a digitally signed message part.
___
Tinycc-devel mailing list
Tinycc-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/tinycc-devel