From patchwork Sat Jan 9 08:54:04 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 10310 Received: (qmail 22443 invoked by alias); 9 Jan 2016 08:54:09 -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 22424 invoked by uid 89); 9 Jan 2016 08:54:08 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=439, 11, 7, configure.tgt, UD:configure.tgt X-HELO: smtp.gentoo.org Received: from smtp.gentoo.org (HELO smtp.gentoo.org) (140.211.166.183) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sat, 09 Jan 2016 08:54:07 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id BFF7A340924 for ; Sat, 9 Jan 2016 08:54:05 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: stop configuring common subdir [committed] Date: Sat, 9 Jan 2016 03:54:04 -0500 Message-Id: <1452329644-28449-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes Now that cconfig.h doesn't exist, there's no need to build in the common subdir anymore. We leave the configure/Makefile files in there as there is a helper for developers to generate the nltvals.def file. Once that gets cleaned up in the future though, we can drop the build logic too. --- sim/ChangeLog | 7 +++++++ sim/configure | 10 ---------- sim/configure.ac | 3 --- sim/configure.tgt | 5 ----- 4 files changed, 7 insertions(+), 18 deletions(-) diff --git a/sim/ChangeLog b/sim/ChangeLog index 93a6ee7..30eee38 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,5 +1,12 @@ 2016-01-09 Mike Frysinger + * configure.ac: Delete sim_common check and the + AC_CONFIG_SUBDIRS(common) call. + * configure: Regenerate. + * configure.tgt (sim_common): Delete the variable. + +2016-01-09 Mike Frysinger + * .gitignore: Delete /common/cconfig.h entry. 2016-01-05 Nick Clifton diff --git a/sim/configure b/sim/configure index 3447321..2729e69 100755 diff --git a/sim/configure.ac b/sim/configure.ac index 39f9c6e..22db00f 100644 --- a/sim/configure.ac +++ b/sim/configure.ac @@ -43,9 +43,6 @@ m4_define([SIM_ARCH], [ if test "${enable_sim}" != no; then sinclude(configure.tgt) AC_CONFIG_SUBDIRS(testsuite) - if test "$sim_common" = yes; then - AC_CONFIG_SUBDIRS(common) - fi if test "$sim_igen" = yes; then AC_CONFIG_SUBDIRS(igen) fi diff --git a/sim/configure.tgt b/sim/configure.tgt index 83f6cb2..c958fb3 100644 --- a/sim/configure.tgt +++ b/sim/configure.tgt @@ -11,7 +11,6 @@ dnl the shell level, so use sinclude(...) to pull it in. dnl glue to avoid code duplication at top level m4_ifndef([SIM_ARCH], [AC_DEFUN([SIM_ARCH],[sim_arch=$1])]) -sim_common=yes sim_igen=no sim_arch= case "${target}" in @@ -102,9 +101,5 @@ case "${target}" in SIM_ARCH(v850) sim_igen=yes ;; - *) - # No simulator subdir, so the subdir "common" isn't needed. - sim_common=no - ;; esac AC_SUBST(sim_arch)