From patchwork Thu Jul 23 16:02:03 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 7817 Received: (qmail 85517 invoked by alias); 23 Jul 2015 16:02:18 -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 85394 invoked by uid 89); 23 Jul 2015 16:02:17 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f51.google.com Received: from mail-pa0-f51.google.com (HELO mail-pa0-f51.google.com) (209.85.220.51) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 23 Jul 2015 16:02:10 +0000 Received: by padck2 with SMTP id ck2so159264875pad.0 for ; Thu, 23 Jul 2015 09:02:08 -0700 (PDT) X-Received: by 10.66.155.36 with SMTP id vt4mr20306032pab.32.1437667328700; Thu, 23 Jul 2015 09:02:08 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id bx7sm9723007pdb.82.2015.07.23.09.02.07 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 23 Jul 2015 09:02:08 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH] Remove REMOTE_EXAMPLES from gdb/Makefile.in Date: Thu, 23 Jul 2015 17:02:03 +0100 Message-Id: <1437667323-13886-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes I happen to see REMOTE_EXAMPLES isn't used anywhere, so this patch removes it. REMOTE_EXAMPLES was added in the following commit in 1991, commit 86bbb439c8fa01fd55d6cbce102483a471ffd0c4 Author: John Gilmore Date: Fri May 3 19:57:13 1991 +0000 There should be a Makefile in the cvs main directory, configured for "./config.gdb none", so that things like "make tags" and "make tar" will work. and it was used like: TARFILES = ${TAGFILES_MAINDIR} ${OTHERS} ${REMOTE_EXAMPLES} However TARFILES was removed by the change latter in 1994, Tue Aug 16 15:24:03 1994 Jim Kingdon (kingdon@lioth.cygnus.com) * symtab.c (decode_line_1): If funfirstline and we get a non-LOC_BLOCK symbol (e.g. variable or type), then error(). * Makefile.in (TARFILES, NONSRC, SFILES_STAND, SFILES_KGDB): Remove; unused. Since then, REMOTE_EXAMPLES is not used any more. I'll push it in in a couple of days. gdb: 2015-07-23 Yao Qi * Makefile.in (REMOTE_EXAMPLES): Remove it. --- gdb/Makefile.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 7e3871d..2dd8c49 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -993,8 +993,6 @@ HFILES_WITH_SRCDIR = ../bfd/bfd.h jit-reader.h # GDB "info" files, which should be included in their entirety INFOFILES = gdb.info* -REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar - # {X,T,NAT}DEPFILES are something of a pain in that it's hard to # default their values the way we do for SER_HARDWIRE; in the future # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other