From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 118621 invoked by alias); 27 Jul 2015 16:26:23 -0000 Mailing-List: contact gdb-testers-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-testers-owner@sourceware.org Received: (qmail 118536 invoked by uid 89); 27 Jul 2015 16:26:22 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.4 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY autolearn=no version=3.3.2 X-HELO: kwanyin.sergiodj.net Received: from kwanyin.sergiodj.net (HELO kwanyin.sergiodj.net) (176.31.208.32) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Mon, 27 Jul 2015 16:26:21 +0000 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [binutils-gdb] Remove REMOTE_EXAMPLES from gdb/Makefile.in From: sergiodj+buildbot@redhat.com To: gdb-testers@sourceware.org Message-Id: <206350da0f99b9a50fe6405613b3b05561a55aae@gdb-build> Date: Mon, 27 Jul 2015 16:26:00 -0000 X-SW-Source: 2015-q3/txt/msg03206.txt.bz2 *** TEST RESULTS FOR COMMIT 206350da0f99b9a50fe6405613b3b05561a55aae *** Author: Yao Qi Branch: master Commit: 206350da0f99b9a50fe6405613b3b05561a55aae Remove REMOTE_EXAMPLES from gdb/Makefile.in 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. gdb: 2015-07-27 Yao Qi * Makefile.in (REMOTE_EXAMPLES): Remove it.