Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [RFA] Texinfo build errors
@ 2005-02-09 18:49 Theodore A. Roth
  2005-02-09 19:21 ` Andrew Cagney
  2005-02-09 20:00 ` Eli Zaretskii
  0 siblings, 2 replies; 5+ messages in thread
From: Theodore A. Roth @ 2005-02-09 18:49 UTC (permalink / raw)
  To: gdb-patches

[-- Attachment #1: Type: TEXT/PLAIN, Size: 919 bytes --]

Hi,

I just tried to build the latest from cvs and got these fatal errors
during the 'make install' stage:

makeinfo --split-size=5000000 -I ../../../src/gdb/doc/../../readline/doc
-I ../../../src/gdb/doc/../mi -I ../../../src/gdb/doc \
        -o gdb.info ../../../src/gdb/doc/gdb.texinfo
../../../src/gdb/doc/gdb.texinfo:7035: warning: @strong{Note:} produces
a spurious cross-reference in Info; reword to avoid that.
../../../src/gdb/doc/gdb.texinfo:21102: @dots expected braces.
../../../src/gdb/doc/gdb.texinfo:21102: @- missing close brace.
makeinfo: Removing output file `gdb.info' due to errors; use --force to
preserve.


The attached patch get things working again for my system (debian-sarge,
texinfo-4.7, teTeX-2.0.2). I'm no texinfo wizard, so please let me know
if there are better fixes.

This is probably an obvious fix, but I'm asking for approval anyways.

Thanks.

---
Ted Roth
PGP Key ID: 0x18F846E9

[-- Attachment #2: Type: TEXT/PLAIN, Size: 1062 bytes --]

2005-02-09  Theodore A. Roth  <troth@openavr.org>

	* gdb.texinfo (General Query Packets): Fix texinfo compile warning and
	error.

Index: gdb.texinfo
===================================================================
RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v
retrieving revision 1.231
diff -u -p -p -r1.231 gdb.texinfo
--- gdb.texinfo	3 Feb 2005 16:11:38 -0000	1.231
+++ gdb.texinfo	9 Feb 2005 17:03:33 -0000
@@ -7032,7 +7032,7 @@ experiment.
 This command takes no arguments.  It ends the trace experiment, and
 stops collecting data.
 
-@strong{Note:} a trace experiment and data collection may stop
+@strong{Note}: a trace experiment and data collection may stop
 automatically if any tracepoint's passcount is reached
 (@pxref{Tracepoint Passcounts}), or if the trace buffer becomes full.
 
@@ -21098,7 +21098,7 @@ differently, so the precise meaning of t
 
 Reply:
 @table @asis
-@item @var{XX@dots}
+@item @var{XX@dots{}}
 Hex encoded (big endian) bytes representing the address of the thread
 local storage requested.
 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFA] Texinfo build errors
  2005-02-09 18:49 [RFA] Texinfo build errors Theodore A. Roth
@ 2005-02-09 19:21 ` Andrew Cagney
  2005-02-09 19:40   ` Theodore A. Roth
  2005-02-09 20:27   ` Eli Zaretskii
  2005-02-09 20:00 ` Eli Zaretskii
  1 sibling, 2 replies; 5+ messages in thread
From: Andrew Cagney @ 2005-02-09 19:21 UTC (permalink / raw)
  To: Theodore A. Roth; +Cc: gdb-patches

Theodore A. Roth wrote:
> Hi,
> 
> I just tried to build the latest from cvs and got these fatal errors
> during the 'make install' stage:
> 
> makeinfo --split-size=5000000 -I ../../../src/gdb/doc/../../readline/doc
> -I ../../../src/gdb/doc/../mi -I ../../../src/gdb/doc \
>         -o gdb.info ../../../src/gdb/doc/gdb.texinfo
> ../../../src/gdb/doc/gdb.texinfo:7035: warning: @strong{Note:} produces
> a spurious cross-reference in Info; reword to avoid that.
> ../../../src/gdb/doc/gdb.texinfo:21102: @dots expected braces.
> ../../../src/gdb/doc/gdb.texinfo:21102: @- missing close brace.
> makeinfo: Removing output file `gdb.info' due to errors; use --force to
> preserve.
> 
> 
> The attached patch get things working again for my system (debian-sarge,
> texinfo-4.7, teTeX-2.0.2). I'm no texinfo wizard, so please let me know
> if there are better fixes.
> 
> This is probably an obvious fix, but I'm asking for approval anyways.

It's definitly better than not building (checking the nightly snaps it 
seems they also barf with the same error).  I'd commit it is obvious for 
that reason.

Andrew

> ---
> Ted Roth
> PGP Key ID: 0x18F846E9
> 
> 
> ------------------------------------------------------------------------
> 
> 2005-02-09  Theodore A. Roth  <troth@openavr.org>
> 
> 	* gdb.texinfo (General Query Packets): Fix texinfo compile warning and
> 	error.
> 
> Index: gdb.texinfo
> ===================================================================
> RCS file: /cvs/src/src/gdb/doc/gdb.texinfo,v
> retrieving revision 1.231
> diff -u -p -p -r1.231 gdb.texinfo
> --- gdb.texinfo	3 Feb 2005 16:11:38 -0000	1.231
> +++ gdb.texinfo	9 Feb 2005 17:03:33 -0000
> @@ -7032,7 +7032,7 @@ experiment.
>  This command takes no arguments.  It ends the trace experiment, and
>  stops collecting data.
>  
> -@strong{Note:} a trace experiment and data collection may stop
> +@strong{Note}: a trace experiment and data collection may stop
>  automatically if any tracepoint's passcount is reached
>  (@pxref{Tracepoint Passcounts}), or if the trace buffer becomes full.
>  
> @@ -21098,7 +21098,7 @@ differently, so the precise meaning of t
>  
>  Reply:
>  @table @asis
> -@item @var{XX@dots}
> +@item @var{XX@dots{}}
>  Hex encoded (big endian) bytes representing the address of the thread
>  local storage requested.
>  


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFA] Texinfo build errors
  2005-02-09 19:21 ` Andrew Cagney
@ 2005-02-09 19:40   ` Theodore A. Roth
  2005-02-09 20:27   ` Eli Zaretskii
  1 sibling, 0 replies; 5+ messages in thread
From: Theodore A. Roth @ 2005-02-09 19:40 UTC (permalink / raw)
  To: Andrew Cagney; +Cc: gdb-patches

On Wed, 9 Feb 2005, Andrew Cagney wrote:

> Theodore A. Roth wrote:
> > Hi,
> >
> > I just tried to build the latest from cvs and got these fatal errors
> > during the 'make install' stage:
> >
> > makeinfo --split-size=5000000 -I ../../../src/gdb/doc/../../readline/doc
> > -I ../../../src/gdb/doc/../mi -I ../../../src/gdb/doc \
> >         -o gdb.info ../../../src/gdb/doc/gdb.texinfo
> > ../../../src/gdb/doc/gdb.texinfo:7035: warning: @strong{Note:} produces
> > a spurious cross-reference in Info; reword to avoid that.
> > ../../../src/gdb/doc/gdb.texinfo:21102: @dots expected braces.
> > ../../../src/gdb/doc/gdb.texinfo:21102: @- missing close brace.
> > makeinfo: Removing output file `gdb.info' due to errors; use --force to
> > preserve.
> >
> >
> > The attached patch get things working again for my system (debian-sarge,
> > texinfo-4.7, teTeX-2.0.2). I'm no texinfo wizard, so please let me know
> > if there are better fixes.
> >
> > This is probably an obvious fix, but I'm asking for approval anyways.
>
> It's definitly better than not building (checking the nightly snaps it
> seems they also barf with the same error).  I'd commit it is obvious for
> that reason.
>
> Andrew

Committed.

---
Ted Roth
PGP Key ID: 0x18F846E9


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFA] Texinfo build errors
  2005-02-09 18:49 [RFA] Texinfo build errors Theodore A. Roth
  2005-02-09 19:21 ` Andrew Cagney
@ 2005-02-09 20:00 ` Eli Zaretskii
  1 sibling, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2005-02-09 20:00 UTC (permalink / raw)
  To: Theodore A. Roth; +Cc: gdb-patches

> Date: Wed, 9 Feb 2005 09:09:43 -0800 (PST)
> From: "Theodore A. Roth" <troth@openavr.org>
> 
> This is probably an obvious fix, but I'm asking for approval anyways.

Approved.  Thanks.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [RFA] Texinfo build errors
  2005-02-09 19:21 ` Andrew Cagney
  2005-02-09 19:40   ` Theodore A. Roth
@ 2005-02-09 20:27   ` Eli Zaretskii
  1 sibling, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2005-02-09 20:27 UTC (permalink / raw)
  To: Andrew Cagney; +Cc: troth, gdb-patches

> Date: Wed, 09 Feb 2005 13:50:15 -0500
> From: Andrew Cagney <cagney@gnu.org>
> Cc: gdb-patches@sources.redhat.com
> 
> It's definitly better than not building (checking the nightly snaps it 
> seems they also barf with the same error).  I'd commit it is obvious for 
> that reason.

I'm at a loss why you couldn't wait for my approval (which was just
given).  Do I have a reputation of a slow patch reviewer?


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-02-09 19:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-09 18:49 [RFA] Texinfo build errors Theodore A. Roth
2005-02-09 19:21 ` Andrew Cagney
2005-02-09 19:40   ` Theodore A. Roth
2005-02-09 20:27   ` Eli Zaretskii
2005-02-09 20:00 ` Eli Zaretskii

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox