diff options
author | Joseph Myers <joseph@codesourcery.com> | 2007-03-22 21:18:34 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2007-03-22 21:18:34 +0000 |
commit | e49e529d120e4bf2c93791900a41cf1a9e7e3cef (patch) | |
tree | 4a55d8397f1979da3964d87fb7771b9dff70a93c /gprof/Makefile.am | |
parent | 5200c3f3c16c1451b4e4c5028d5a58b27d4dc3db (diff) | |
download | gdb-e49e529d120e4bf2c93791900a41cf1a9e7e3cef.zip gdb-e49e529d120e4bf2c93791900a41cf1a9e7e3cef.tar.gz gdb-e49e529d120e4bf2c93791900a41cf1a9e7e3cef.tar.bz2 |
bfd:
* Makefile.am (bfdver.h): Only set VERSION_PACKAGE in bfdver.texi
if nonempty.
* configure.in (REPORT_BUGS_TO): Do not use "URL:" prefix.
* Makefile.in, configure, doc/Makefile.in: Regenerate.
binutils:
* doc/binutils.texi: Include VERSION_PACKAGE when reporting
version.
gas:
* doc/as.texinfo: Include VERSION_PACKAGE when reporting version.
gprof:
* Makefile.am (TEXI2POD): Include $(AM_MAKEINFOFLAGS).
(AM_MAKEINFOFLAGS, TEXI2DVI): Define with -I ../bfd/doc.
* Makefile.in: Regenerate.
* gprof.texi: Include bfdver.texi. Report both VERSION_PACKAGE
and VERSION.
ld:
* ld.texinfo: Include VERSION_PACKAGE when reporting version.
Diffstat (limited to 'gprof/Makefile.am')
-rw-r--r-- | gprof/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gprof/Makefile.am b/gprof/Makefile.am index 3a3fb43..e439b1c 100644 --- a/gprof/Makefile.am +++ b/gprof/Makefile.am @@ -56,7 +56,7 @@ po/POTFILES.in: @MAINT@ Makefile MANCONF = -Dman -TEXI2POD = perl $(srcdir)/../etc/texi2pod.pl +TEXI2POD = perl $(srcdir)/../etc/texi2pod.pl $(AM_MAKEINFOFLAGS) POD2MAN = pod2man --center="GNU" --release="binutils-$(VERSION)" --section=1 @@ -64,6 +64,9 @@ info_TEXINFOS = gprof.texi gprof_TEXINFOS = config.texi man_MANS = gprof.1 +AM_MAKEINFOFLAGS = -I "$(srcdir)" -I ../bfd/doc +TEXI2DVI = texi2dvi -I "$(srcdir)" -I ../bfd/doc + config.texi: echo "@set top_srcdir $(top_srcdir)" >> ./config.texi |