diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-06 20:48:46 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-12 20:24:08 -0400 |
commit | 6dd65fc048dbe167b809f687acc6228eb07ecec6 (patch) | |
tree | 6784f6a25e493296f4600ee94f1d5bcc3cf79da9 /sim/Makefile.in | |
parent | 04381273a9ea0cf30575d58983287cd950b3e166 (diff) | |
download | gdb-6dd65fc048dbe167b809f687acc6228eb07ecec6.zip gdb-6dd65fc048dbe167b809f687acc6228eb07ecec6.tar.gz gdb-6dd65fc048dbe167b809f687acc6228eb07ecec6.tar.bz2 |
sim: unify bug & package settings
Move these options up to the common dir so we only test & export
them once across all ports. The AC_INIT macro does a lot of the
heavy lifting already which allows further simplification.
Diffstat (limited to 'sim/Makefile.in')
-rw-r--r-- | sim/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index 6df3d67..891253a 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -194,7 +194,8 @@ TESTS = testsuite/common/bits32m0$(EXEEXT) \ testsuite/common/alu-tst$(EXEEXT) subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 -am__aclocal_m4_deps = $(top_srcdir)/../config/depstand.m4 \ +am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \ + $(top_srcdir)/../config/depstand.m4 \ $(top_srcdir)/../config/lead-dot.m4 \ $(top_srcdir)/../config/override.m4 \ $(top_srcdir)/m4/sim_ac_option_assert.m4 \ @@ -647,8 +648,11 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ +PKGVERSION = @PKGVERSION@ RANLIB = @RANLIB@ RANLIB_FOR_BUILD = @RANLIB_FOR_BUILD@ +REPORT_BUGS_TEXI = @REPORT_BUGS_TEXI@ +REPORT_BUGS_TO = @REPORT_BUGS_TO@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SIM_PRIMARY_TARGET = @SIM_PRIMARY_TARGET@ |