]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gdb: move libiberty.m4 to gdbsupport
authorMike Frysinger <vapier@gentoo.org>
Wed, 10 Jan 2024 01:20:38 +0000 (20:20 -0500)
committerMike Frysinger <vapier@gentoo.org>
Thu, 11 Jan 2024 00:52:52 +0000 (19:52 -0500)
This is used by gdb, gdbsupport, and gdbserver.  We want to use it
in the sim tree too.  Move it to gdbsupport which is meant as the
common sharing space for these projects.

Approved-By: Tom Tromey <tom@tromey.com>
gdb/acinclude.m4
gdbserver/acinclude.m4
gdbsupport/Makefile.in
gdbsupport/acinclude.m4
gdbsupport/libiberty.m4 [moved from gdb/libiberty.m4 with 100% similarity]

index d505fbbb2676a1834293249e0cb76c4de2145432..915082056dd9ee87fa1c97c205dbf73467117b99 100644 (file)
@@ -48,7 +48,7 @@ m4_include([../config/zstd.m4])
 m4_include([../gdbsupport/common.m4])
 
 dnl For libiberty_INIT.
-m4_include(libiberty.m4)
+m4_include(../gdbsupport/libiberty.m4)
 
 dnl For GDB_AC_PTRACE.
 m4_include(../gdbsupport/ptrace.m4)
index 32d5d14ca6eeee14668b7025a6c5092184397e5c..db69b7d243b10338eedbc3df5307bbe8b06caec1 100644 (file)
@@ -19,7 +19,7 @@ m4_include(../config/codeset.m4)
 m4_include(../gdbsupport/common.m4)
 
 dnl For libiberty_INIT.
-m4_include(../gdb/libiberty.m4)
+m4_include(../gdbsupport/libiberty.m4)
 
 dnl For GDB_AC_PTRACE.
 m4_include(../gdbsupport/ptrace.m4)
index 070e36a6affaf599f712863baf8f11fa250956ea..23f980d1bc1d842c3d84d41a30143c859a457ff8 100644 (file)
@@ -128,9 +128,10 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/codeset.m4 \
        $(top_srcdir)/../bfd/bfd.m4 $(top_srcdir)/common.m4 \
        $(top_srcdir)/../config/ax_pthread.m4 \
        $(top_srcdir)/../gdb/ax_cxx_compile_stdcxx.m4 \
-       $(top_srcdir)/../gdb/libiberty.m4 $(top_srcdir)/selftest.m4 \
-       $(top_srcdir)/ptrace.m4 $(top_srcdir)/compiler-type.m4 \
-       $(top_srcdir)/warning.m4 $(top_srcdir)/configure.ac
+       $(top_srcdir)/../gdbsupport/libiberty.m4 \
+       $(top_srcdir)/selftest.m4 $(top_srcdir)/ptrace.m4 \
+       $(top_srcdir)/compiler-type.m4 $(top_srcdir)/warning.m4 \
+       $(top_srcdir)/configure.ac
 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
        $(ACLOCAL_M4)
 DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
index c6276149867e3522fe19a49587f04817faad2664..584d392b996d4ea5fbbac3301b7823fcb8dc3e25 100644 (file)
@@ -2,7 +2,7 @@ m4_include([../bfd/bfd.m4])
 m4_include([common.m4])
 m4_include([../config/ax_pthread.m4])
 m4_include([../gdb/ax_cxx_compile_stdcxx.m4])
-m4_include([../gdb/libiberty.m4])
+m4_include([../gdbsupport/libiberty.m4])
 m4_include([selftest.m4])
 m4_include([ptrace.m4])
 
similarity index 100%
rename from gdb/libiberty.m4
rename to gdbsupport/libiberty.m4