diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-04-13 02:38:57 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-04-13 02:41:10 -0400 |
commit | bf12d44ee075e694a2b0dca87b9e9ca0e685d319 (patch) | |
tree | 9a24d96ec6efff307fbd1729c8445ddb6963b272 /sim/common | |
parent | a542beff945c1a416f85309d57b21d4a18422883 (diff) | |
download | gdb-bf12d44ee075e694a2b0dca87b9e9ca0e685d319.zip gdb-bf12d44ee075e694a2b0dca87b9e9ca0e685d319.tar.gz gdb-bf12d44ee075e694a2b0dca87b9e9ca0e685d319.tar.bz2 |
sim: fix the PKGVERSION define
This should be SIM, not GDB.
Diffstat (limited to 'sim/common')
-rw-r--r-- | sim/common/ChangeLog | 5 | ||||
-rw-r--r-- | sim/common/acinclude.m4 | 2 | ||||
-rwxr-xr-x | sim/common/configure | 4 |
3 files changed, 8 insertions, 3 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index a7341f5..5c0667b 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,10 @@ 2015-04-13 Mike Frysinger <vapier@gentoo.org> + * acinclude.m4 (ACX_PKGVERSION): Change GDB to SIM. + * configure: Regenerate. + +2015-04-13 Mike Frysinger <vapier@gentoo.org> + * sim-options.c: Include version.h. (OPTIONS_VERSION): New enum. (standard_options): Add "version". diff --git a/sim/common/acinclude.m4 b/sim/common/acinclude.m4 index 6522fea..75ea8ea 100644 --- a/sim/common/acinclude.m4 +++ b/sim/common/acinclude.m4 @@ -235,7 +235,7 @@ if test x"$silent" != x"yes" && test x"$sim_profile" != x""; then fi],[sim_profile="-DPROFILE=1 -DWITH_PROFILE=-1"])dnl AC_SUBST(sim_profile) -ACX_PKGVERSION([GDB]) +ACX_PKGVERSION([SIM]) ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/]) AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description]) AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address]) diff --git a/sim/common/configure b/sim/common/configure index b81c8a1..631ebac 100755 --- a/sim/common/configure +++ b/sim/common/configure @@ -1412,7 +1412,7 @@ Optional Packages: --with-pic try to use only PIC/non-PIC objects [default=use both] --with-gnu-ld assume the C compiler uses GNU ld [default=no] - --with-pkgversion=PKG Use PKG in the version string in place of "GDB" + --with-pkgversion=PKG Use PKG in the version string in place of "SIM" --with-bugurl=URL Direct users to URL to report a bug Some influential environment variables: @@ -11062,7 +11062,7 @@ if test "${with_pkgversion+set}" = set; then : *) PKGVERSION="($withval) " ;; esac else - PKGVERSION="(GDB) " + PKGVERSION="(SIM) " fi |