From patchwork Tue Apr 14 03:18:43 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 6210 Received: (qmail 10746 invoked by alias); 14 Apr 2015 03:18:50 -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 10737 invoked by uid 89); 14 Apr 2015 03:18:50 -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, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 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; Tue, 14 Apr 2015 03:18:49 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 5B4CD340BFD for ; Tue, 14 Apr 2015 03:18:47 +0000 (UTC) From: Mike Frysinger To: gdb-patches@sourceware.org Subject: [PATCH] sim: ppc: fix up version script Date: Mon, 13 Apr 2015 23:18:43 -0400 Message-Id: <1428981523-5692-1-git-send-email-vapier@gentoo.org> In-Reply-To: <201504131435.t3DEZTAS012532@ignucius.se.axis.com> References: <201504131435.t3DEZTAS012532@ignucius.se.axis.com> X-IsSubscribed: yes The common sim code has switched to using gdb directly; update the ppc copy too. Committed. --- sim/ppc/ChangeLog | 5 +++++ sim/ppc/Makefile.in | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index 51963846..cd185ba 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,3 +1,8 @@ +2015-04-13 Mike Frysinger + + * Makefile.in (version.o): Change to using create-version.sh from gdb. + (create-version.sh): Delete. + 2015-03-31 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 964a7b3..5278f3b 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -565,8 +565,9 @@ $(TARGETLIB): tmp-igen tmp-dgen tmp-hw tmp-pk tmp-defines $(LIB_OBJ) $(GDB_OBJ) $(AR) $(AR_FLAGS) $(TARGETLIB) $(LIB_OBJ) $(GDB_OBJ) $(RANLIB) $(TARGETLIB) -version.c: Makefile $(srccom)/create-version.sh ../../bfd/version.h ../../gdb/version.in - $(SHELL) $(srccom)/create-version.sh $(srcsim) $(host_alias) $(target_alias) version.c +version.c: Makefile $(srcroot)/gdb/version.in $(srcroot)/bfd/version.h $(srcroot)/gdb/common/create-version.sh + $(SHELL) $(srcroot)/gdb/common/create-version.sh $(srcroot)/gdb \ + $(host_alias) $(target_alias) version.c version.o: version.c $(version_h) psim.o: psim.c $(CPU_H) $(IDECODE_H) $(OPTIONS_H) $(TREE_H) $(BFD_H)