diff options
author | Joseph Myers <joseph@codesourcery.com> | 2006-06-02 23:08:12 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2006-06-02 23:08:12 +0000 |
commit | e10fad1212735b3747d571822d5fc33be5af6609 (patch) | |
tree | 8cdb8fd4bbbc19bf64a975b285f065e8a0625dac /ld/Makefile.in | |
parent | 7741be99dddd09a13a58229705190e53ecf5ffc1 (diff) | |
download | gdb-e10fad1212735b3747d571822d5fc33be5af6609.zip gdb-e10fad1212735b3747d571822d5fc33be5af6609.tar.gz gdb-e10fad1212735b3747d571822d5fc33be5af6609.tar.bz2 |
binutils:
* doc/Makefile.am (TEXI2DVI): Define.
* doc/Makefile.in: Regenerate.
gas:
* doc/Makefile.am (TEXI2DVI): Define.
* doc/Makefile.in: Regenerate.
* doc/c-arc.texi: Fix typo.
ld:
* Makefile.am (TEXI2DVI): Add -I $(top_srcdir)/../libiberty.
* Makefile.in: Regenerate.
Diffstat (limited to 'ld/Makefile.in')
-rw-r--r-- | ld/Makefile.in | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/ld/Makefile.in b/ld/Makefile.in index 8a6163b..6ea730d 100644 --- a/ld/Makefile.in +++ b/ld/Makefile.in @@ -322,7 +322,7 @@ info_TEXINFOS = ld.texinfo noinst_TEXINFOS = ldint.texinfo 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\"" BFDLIB = ../bfd/libbfd.la LIBIBERTY = ../libiberty/libiberty.a @@ -876,13 +876,10 @@ dist-info: $(INFO_DEPS) $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \ esac; \ if test -f $$base; then d=.; else d=$(srcdir); fi; \ - base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \ - for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \ - if test -f $$file; then \ - relfile=`expr "$$file" : "$$d/\(.*\)"`; \ - test -f $(distdir)/$$relfile || \ - cp -p $$file $(distdir)/$$relfile; \ - else :; fi; \ + for file in $$d/$$base*; do \ + relfile=`expr "$$file" : "$$d/\(.*\)"`; \ + test -f $(distdir)/$$relfile || \ + cp -p $$file $(distdir)/$$relfile; \ done; \ done |