This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch:doc] Specify full path to gdb.texinfo


Hello,

Finally noticed why makeinfo wasn't giving a useful path when giving 
errors.  This adds the full path.

Committed as ``obvious''.

enjoy,
Andrew
Index: ChangeLog
2002-02-24  Andrew Cagney  <ac131313@redhat.com>

	* Makefile.in (gdb.info): Add explicit path to gdb.texinfo.
	Remove reference to 3.12.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/doc/Makefile.in,v
retrieving revision 1.19
diff -p -r1.19 Makefile.in
*** Makefile.in	2002/02/24 17:18:25	1.19
--- Makefile.in	2002/02/25 04:29:11
*************** gdb.pdf: ${SFILES_DOC}
*** 263,272 ****
  		gdb.tp* gdb.vr*
  
  # GDB MANUAL: info file
- # We're using texinfo 3.12; older makeinfo's may not be able to
- # cope with all the markup.  
  gdb.info: ${SFILES_DOC}
! 	$(MAKEINFO) -I ${READLINE_DIR} -I ${GDBMI_DIR} -I $(srcdir) -o ./gdb.info gdb.texinfo
  
  # GDB MANUAL: roff translations
  # Try to use a recent texi2roff.  v2 was put on prep in jan91.
--- 263,271 ----
  		gdb.tp* gdb.vr*
  
  # GDB MANUAL: info file
  gdb.info: ${SFILES_DOC}
! 	$(MAKEINFO) -I ${READLINE_DIR} -I ${GDBMI_DIR} -I $(srcdir) \
! 		-o gdb.info $(srcdir)/gdb.texinfo
  
  # GDB MANUAL: roff translations
  # Try to use a recent texi2roff.  v2 was put on prep in jan91.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]