From patchwork Sat Jan 2 08:40:54 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 10191 Received: (qmail 94009 invoked by alias); 2 Jan 2016 08:41:00 -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 93967 invoked by uid 89); 2 Jan 2016 08:40:59 -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=decade, powerpc***, powerpc*-*-*, existed 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, 02 Jan 2016 08:40:58 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 96EC03405BB for ; Sat, 2 Jan 2016 08:40:56 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] gdb: ppc: drop unnecessary sim file check [committed] Date: Sat, 2 Jan 2016 03:40:54 -0500 Message-Id: <1451724054-22516-1-git-send-email-vapier@gentoo.org> X-IsSubscribed: yes We don't do this for other ppc targets in this file (we assume the sim subdir exists), and it has existed for over a decade at this point. --- gdb/ChangeLog | 5 +++++ gdb/configure.tgt | 4 +--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 7aae8a8..46d7fd7 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2016-01-02 Mike Frysinger + + * configure.tgt (powerpc*-*-*): Delete test call and + always assign gdb_sim. + 2016-01-01 Joel Brobecker Update year range in copyright notice of all files. diff --git a/gdb/configure.tgt b/gdb/configure.tgt index 6e50dd2..a746659 100644 --- a/gdb/configure.tgt +++ b/gdb/configure.tgt @@ -452,9 +452,7 @@ powerpc*-*-*) # Target: PowerPC running eabi gdb_target_obs="rs6000-tdep.o ppc-sysv-tdep.o solib-svr4.o \ ravenscar-thread.o ppc-ravenscar-thread.o" - if test -f ../sim/ppc/Makefile; then - gdb_sim=../sim/ppc/libsim.a - fi + gdb_sim=../sim/ppc/libsim.a ;; s390*-*-linux*)