From patchwork Thu Mar 5 19:30:11 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Marchi X-Patchwork-Id: 38436 Received: (qmail 64250 invoked by alias); 5 Mar 2020 19:30:42 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 64156 invoked by uid 89); 5 Mar 2020 19:30:33 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-23.6 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_NUMSUBJECT, RCVD_IN_DNSWL_LOW, SPF_SOFTFAIL autolearn=ham version=3.3.1 spammy=H*RU:sk:barracu, HX-Spam-Relays-External:sk:barracu, H*r:sk:barracu, HContent-Transfer-Encoding:8bit X-HELO: barracuda.ebox.ca Received: from barracuda.ebox.ca (HELO barracuda.ebox.ca) (96.127.255.19) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 05 Mar 2020 19:30:22 +0000 Received: from smtp.ebox.ca (smtp.ebox.ca [96.127.255.82]) by barracuda.ebox.ca with ESMTP id Aqhvn3YcSzBupt4Z (version=TLSv1 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 05 Mar 2020 14:30:13 -0500 (EST) Received: from epycamd.internal.efficios.com (192-222-181-218.qc.cable.ebox.net [192.222.181.218]) by smtp.ebox.ca (Postfix) with ESMTP id A772C441B21; Thu, 5 Mar 2020 14:30:13 -0500 (EST) From: Simon Marchi To: gdb-patches@sourceware.org Cc: Simon Marchi Subject: [PATCH 4/4] Move gdb/selftest.m4 to gdbsupport/selftest.m4 Date: Thu, 5 Mar 2020 14:30:11 -0500 Message-Id: <20200305193011.25939-4-simon.marchi@efficios.com> In-Reply-To: <20200305193011.25939-1-simon.marchi@efficios.com> References: <20200305193011.25939-1-simon.marchi@efficios.com> MIME-Version: 1.0 The selftest.m4 file is used by gdb, gdbserver and gdbsupport, I think it belongs in gdbsupport. gdb/ChangeLog: * selftest.m4: Move to gdbsupport/. * acinclude.m4: Update path to selftest.m4. gdbserver/ChangeLog: * acinclude.m4: Update path to selftest.m4. gdbsupport/ChangeLog: * selftest.m4: Moved from gdb/. * acinclude.m4: Update path to selftest.m4. --- gdb/acinclude.m4 | 2 +- gdbserver/acinclude.m4 | 2 +- gdbsupport/Makefile.in | 3 +-- gdbsupport/acinclude.m4 | 2 +- {gdb => gdbsupport}/selftest.m4 | 0 5 files changed, 4 insertions(+), 5 deletions(-) rename {gdb => gdbsupport}/selftest.m4 (100%) diff --git a/gdb/acinclude.m4 b/gdb/acinclude.m4 index 14304bbe50..852a71c3f1 100644 --- a/gdb/acinclude.m4 +++ b/gdb/acinclude.m4 @@ -16,7 +16,7 @@ m4_include(../gdbsupport/warning.m4) m4_include(sanitize.m4) # This gets GDB_AC_SELFTEST. -m4_include(selftest.m4) +m4_include(../gdbsupport/selftest.m4) dnl gdb/configure.in uses BFD_NEED_DECLARATION, so get its definition. m4_include(../bfd/bfd.m4) diff --git a/gdbserver/acinclude.m4 b/gdbserver/acinclude.m4 index 00476bb055..e0d2bfa213 100644 --- a/gdbserver/acinclude.m4 +++ b/gdbserver/acinclude.m4 @@ -32,7 +32,7 @@ m4_include(../gdb/ptrace.m4) m4_include(../gdb/ax_cxx_compile_stdcxx.m4) dnl For GDB_AC_SELFTEST. -m4_include(../gdb/selftest.m4) +m4_include(../gdbsupport/selftest.m4) m4_include([../config/ax_pthread.m4]) diff --git a/gdbsupport/Makefile.in b/gdbsupport/Makefile.in index 360ad3fd01..7ed2e6fac2 100644 --- a/gdbsupport/Makefile.in +++ b/gdbsupport/Makefile.in @@ -122,8 +122,7 @@ 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)/../gdb/selftest.m4 \ + $(top_srcdir)/../gdb/libiberty.m4 $(top_srcdir)/selftest.m4 \ $(top_srcdir)/../gdb/ptrace.m4 $(top_srcdir)/warning.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ diff --git a/gdbsupport/acinclude.m4 b/gdbsupport/acinclude.m4 index d638ebcb54..4c86c4f8de 100644 --- a/gdbsupport/acinclude.m4 +++ b/gdbsupport/acinclude.m4 @@ -3,7 +3,7 @@ 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([../gdb/selftest.m4]) +m4_include([selftest.m4]) m4_include([../gdb/ptrace.m4]) dnl This gets AM_GDB_WARNINGS. diff --git a/gdb/selftest.m4 b/gdbsupport/selftest.m4 similarity index 100% rename from gdb/selftest.m4 rename to gdbsupport/selftest.m4