diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-12-04 00:28:14 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-01-01 12:49:07 -0500 |
commit | 1d5269c994bf4af088b1a9d0ed39825541623a99 (patch) | |
tree | 427712dedcd41fc7d1d0e8f837444ec8f6c6c762 /opcodes/Makefile.in | |
parent | 3cc8ed6aaee33355a5d911a7401db3f1b05a2714 (diff) | |
download | gdb-1d5269c994bf4af088b1a9d0ed39825541623a99.zip gdb-1d5269c994bf4af088b1a9d0ed39825541623a99.tar.gz gdb-1d5269c994bf4af088b1a9d0ed39825541623a99.tar.bz2 |
unify 64-bit bfd checks
Move the 64-bit bfd logic out of bfd/configure.ac and into bfd64.m4
under config so it can be shared between all the other subdirs.
This replaces want64 with enable_64_bit_bfd which was already being
declared, but not used directly.
Diffstat (limited to 'opcodes/Makefile.in')
-rw-r--r-- | opcodes/Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/opcodes/Makefile.in b/opcodes/Makefile.in index eb5306e..5d17048 100644 --- a/opcodes/Makefile.in +++ b/opcodes/Makefile.in @@ -114,6 +114,7 @@ subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/../bfd/acinclude.m4 \ $(top_srcdir)/../bfd/warning.m4 $(top_srcdir)/../config/acx.m4 \ + $(top_srcdir)/../config/bfd64.m4 \ $(top_srcdir)/../config/depstand.m4 \ $(top_srcdir)/../config/gettext-sister.m4 \ $(top_srcdir)/../config/jobserver.m4 \ |