This is the mail archive of the binutils@sourceware.org mailing list for the binutils 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 to fix some PDF manual builds


This patch fixes the build of some PDF manuals (with "make
$manual.pdf"; plain "make pdf" runs into subdirectories without dummy
"pdf" rules).  I expect it also fixes DVI and PS manual builds, with
the same caveat about subdirectories without dummy rules.  OK to
commit?

binutils:
2006-06-02  Joseph S. Myers  <joseph@codesourcery.com>

	* doc/Makefile.am (TEXI2DVI): Define.
	* doc/Makefile.in: Regenerate.

gas:
2006-06-02  Joseph S. Myers  <joseph@codesourcery.com>

	* doc/Makefile.am (TEXI2DVI): Define.
	* doc/Makefile.in: Regenerate.
	* doc/c-arc.texi: Fix typo.

ld:
2006-06-02  Joseph S. Myers  <joseph@codesourcery.com>

	* Makefile.am (TEXI2DVI): Add -I $(top_srcdir)/../libiberty.
	* Makefile.in: Regenerate.

Index: binutils/doc/Makefile.am
===================================================================
RCS file: /cvs/src/src/binutils/doc/Makefile.am,v
retrieving revision 1.13
diff -u -r1.13 Makefile.am
--- binutils/doc/Makefile.am	19 May 2006 13:10:58 -0000	1.13
+++ binutils/doc/Makefile.am	2 Jun 2006 22:06:21 -0000
@@ -35,6 +35,7 @@
 binutils_TEXI = $(srcdir)/binutils.texi
 
 AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty"
+TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty"
 
 config.texi: $(srcdir)/../../bfd/configure $(binutils_TEXI)
 	rm -f config.texi
Index: gas/doc/Makefile.am
===================================================================
RCS file: /cvs/src/src/gas/doc/Makefile.am,v
retrieving revision 1.45
diff -u -r1.45 Makefile.am
--- gas/doc/Makefile.am	1 Jun 2006 14:54:25 -0000	1.45
+++ gas/doc/Makefile.am	2 Jun 2006 22:06:22 -0000
@@ -18,6 +18,7 @@
 info_TEXINFOS = as.texinfo 
 
 AM_MAKEINFOFLAGS = -I "$(srcdir)" -I "$(top_srcdir)/../libiberty"
+TEXI2DVI = texi2dvi -I "$(srcdir)" -I "$(top_srcdir)/../libiberty"
 
 asconfig.texi: $(CONFIG).texi
 	rm -f asconfig.texi
Index: gas/doc/c-arc.texi
===================================================================
RCS file: /cvs/src/src/gas/doc/c-arc.texi,v
retrieving revision 1.5
diff -u -r1.5 c-arc.texi
--- gas/doc/c-arc.texi	28 Feb 2005 22:03:03 -0000	1.5
+++ gas/doc/c-arc.texi	2 Jun 2006 22:06:22 -0000
@@ -49,7 +49,7 @@
 Jump-and-link (jl) instruction.  No requirement of an instruction between
 setting flags and conditional jump.  For example:
 
-@smallexample @ta
+@smallexample
   mov.f r0,r1
   beq   foo
 @end smallexample
Index: ld/Makefile.am
===================================================================
RCS file: /cvs/src/src/ld/Makefile.am,v
retrieving revision 1.212
diff -u -r1.212 Makefile.am
--- ld/Makefile.am	31 May 2006 15:14:37 -0000	1.212
+++ ld/Makefile.am	2 Jun 2006 22:06:24 -0000
@@ -95,7 +95,7 @@
 man_MANS = ld.1
 
 AM_MAKEINFOFLAGS = -I $(srcdir) -I $(BFDDIR)/doc -I $(top_srcdir)/../libiberty
-TEXI2DVI = texi2dvi -I $(srcdir) -I $(BFDDIR)/doc
+TEXI2DVI = texi2dvi -I $(srcdir) -I $(BFDDIR)/doc -I $(top_srcdir)/../libiberty
 
 INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) @INCINTL@ $(HDEFINES) $(CFLAGS) -DLOCALEDIR="\"$(datadir)/locale\""
 

-- 
Joseph S. Myers
joseph@codesourcery.com


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