Message ID | 20200210164024.32445-2-simon.marchi@efficios.com |
---|---|
State | New |
Headers | show |
>>>>> "Simon" == Simon Marchi <simon.marchi@efficios.com> writes:
Simon> This file is used by gdbsupport, gdbserver and gdb, so I think it
Simon> belongs in gdbsupport. Move it there and update the references the
Simon> various acinclude.m4 files.
Makes sense to me.
Simon> gdbsupport/ChangeLog:
Simon> * warning.m4: Move here, from gdb/warning.m4.
Simon> * acinclude.m4: Update warning.m4 path.
Simon> * Makefile.in: Re-generate.
Simon> gdbserver/ChangeLog:
Simon> * acinclude.m4: Update warning.m4 path.
Simon> gdb/ChangeLog:
Simon> * acinclude: Update warning.m4 path.
Simon> * warning.m4: Move to gdbsupport.
Looks good.
Tom
diff --git a/gdb/acinclude.m4 b/gdb/acinclude.m4 index d60b2fe19c16..14304bbe50ff 100644 --- a/gdb/acinclude.m4 +++ b/gdb/acinclude.m4 @@ -10,7 +10,7 @@ m4_include(acx_configure_dir.m4) m4_include(transform.m4) # This gets AM_GDB_WARNINGS. -m4_include(warning.m4) +m4_include(../gdbsupport/warning.m4) # AM_GDB_UBSAN m4_include(sanitize.m4) diff --git a/gdbserver/acinclude.m4 b/gdbserver/acinclude.m4 index 5a284515c82b..6ed43ddd5219 100644 --- a/gdbserver/acinclude.m4 +++ b/gdbserver/acinclude.m4 @@ -3,8 +3,8 @@ m4_include(../bfd/bfd.m4) m4_include(../gdb/acx_configure_dir.m4) -# This gets AM_GDB_WARNINGS. -m4_include(../gdb/warning.m4) +dnl This gets AM_GDB_WARNINGS. +m4_include(../gdbsupport/warning.m4) dnl This gets autoconf bugfixes m4_include(../config/override.m4) diff --git a/gdbsupport/Makefile.in b/gdbsupport/Makefile.in index 91164175bc04..be4d53545311 100644 --- a/gdbsupport/Makefile.in +++ b/gdbsupport/Makefile.in @@ -124,7 +124,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/codeset.m4 \ $(top_srcdir)/../gdb/ax_cxx_compile_stdcxx.m4 \ $(top_srcdir)/../gdb/libiberty.m4 \ $(top_srcdir)/../gdb/selftest.m4 \ - $(top_srcdir)/../gdb/ptrace.m4 $(top_srcdir)/../gdb/warning.m4 \ + $(top_srcdir)/../gdb/ptrace.m4 $(top_srcdir)/warning.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) diff --git a/gdbsupport/acinclude.m4 b/gdbsupport/acinclude.m4 index 3598b201b94b..d638ebcb543a 100644 --- a/gdbsupport/acinclude.m4 +++ b/gdbsupport/acinclude.m4 @@ -7,4 +7,4 @@ m4_include([../gdb/selftest.m4]) m4_include([../gdb/ptrace.m4]) dnl This gets AM_GDB_WARNINGS. -m4_include(../gdb/warning.m4) +m4_include(warning.m4) diff --git a/gdb/warning.m4 b/gdbsupport/warning.m4 similarity index 100% rename from gdb/warning.m4 rename to gdbsupport/warning.m4