diff options
author | Joseph Myers <jsm@polyomino.org.uk> | 2007-03-01 15:48:36 +0000 |
---|---|---|
committer | Joseph Myers <jsm@polyomino.org.uk> | 2007-03-01 15:48:36 +0000 |
commit | 8411a532b4bbea6783c91a90624102c25a2b2704 (patch) | |
tree | bcf0a72388acbdc203d17dd4ad12cd06e9c60171 | |
parent | 0e30deca8961a4e11a6287b36451443499f84259 (diff) | |
download | gdb-8411a532b4bbea6783c91a90624102c25a2b2704.tar.gz |
bfd:
* Makefile.am (bfdver.h): Use "." not " " between version number
and date.
* Makefile.in: Regenerate.
* configure.in (PKGVERSION): Default to "(GNU Binutils) ".
* configure: Regenerate.
binutils:
* version.c (print_version): Update copyright date.
gas:
* as.c (parse_args): Update copyright date.
gprof:
* gprof.c: Include bfdver.h
(main): Use BFD_VERSION_STRING for version number and package
name.
* Makefile.am (PKGVERSION): Remove.
(INCLUDES): Update.
Regenerate dependencies.
* Makefile.in: Regenerate.
* configure.in (PKGVERSION): Remove.
* configure: Regenerate.
ld:
* ldver.c (ldversion): Remove word "version" from output. Update
copyright date.
-rw-r--r-- | bfd/ChangeLog | 8 | ||||
-rw-r--r-- | bfd/Makefile.am | 2 | ||||
-rw-r--r-- | bfd/Makefile.in | 2 | ||||
-rwxr-xr-x | bfd/configure | 2 | ||||
-rw-r--r-- | bfd/configure.in | 2 |
5 files changed, 12 insertions, 4 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index d02f19a5089..a59681dc358 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,11 @@ +2007-03-01 Joseph Myers <joseph@codesourcery.com> + + * Makefile.am (bfdver.h): Use "." not " " between version number + and date. + * Makefile.in: Regenerate. + * configure.in (PKGVERSION): Default to "(GNU Binutils) ". + * configure: Regenerate. + 2007-02-28 Nathan Sidwell <nathan@codesourcery.com> * config.bfd (sh-*-uclinux, sh[12]-*-uclinux): New stanza. diff --git a/bfd/Makefile.am b/bfd/Makefile.am index 6644b7cc14f..b474e8ddd03 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -968,7 +968,7 @@ bfdver.h: $(srcdir)/version.h $(srcdir)/Makefile.in bfd_version_package="\"$(PKGVERSION)\"" ;\ if test "x$(RELEASE)" = x ; then \ bfd_version_date=`sed -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\ - bfd_version_string="\"$(VERSION) $${bfd_version_date}\"" ;\ + bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\ fi ;\ sed -e "s/@bfd_version@/$$bfd_version/" -e "s/@bfd_version_string@/$$bfd_version_string/" -e "s/@bfd_version_package@/$$bfd_version_package/" < $(srcdir)/version.h > $@ diff --git a/bfd/Makefile.in b/bfd/Makefile.in index 1537c82d9e1..5ec2b599865 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -1532,7 +1532,7 @@ bfdver.h: $(srcdir)/version.h $(srcdir)/Makefile.in bfd_version_package="\"$(PKGVERSION)\"" ;\ if test "x$(RELEASE)" = x ; then \ bfd_version_date=`sed -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\ - bfd_version_string="\"$(VERSION) $${bfd_version_date}\"" ;\ + bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\ fi ;\ sed -e "s/@bfd_version@/$$bfd_version/" -e "s/@bfd_version_string@/$$bfd_version_string/" -e "s/@bfd_version_package@/$$bfd_version_package/" < $(srcdir)/version.h > $@ diff --git a/bfd/configure b/bfd/configure index 460523db23b..00f656925ad 100755 --- a/bfd/configure +++ b/bfd/configure @@ -4399,7 +4399,7 @@ echo "$as_me: error: package version not specified" >&2;} *) PKGVERSION="($withval) " ;; esac else - PKGVERSION= + PKGVERSION="(GNU Binutils) " fi; diff --git a/bfd/configure.in b/bfd/configure.in index 0755226c255..9251e6494bc 100644 --- a/bfd/configure.in +++ b/bfd/configure.in @@ -72,7 +72,7 @@ AC_ARG_WITH(pkgversion, no) PKGVERSION= ;; *) PKGVERSION="($withval) " ;; esac], - PKGVERSION= + PKGVERSION="(GNU Binutils) " ) AC_SUBST(PKGVERSION) |