From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20449 invoked by alias); 16 Aug 2003 16:37:10 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 20437 invoked from network); 16 Aug 2003 16:37:09 -0000 Received: from unknown (HELO concert.shout.net) (204.253.184.25) by sources.redhat.com with SMTP; 16 Aug 2003 16:37:09 -0000 Received: from duracef.shout.net (duracef.shout.net [204.253.184.12]) by concert.shout.net (8.12.9/8.12.9) with ESMTP id h7GGb9QH013711; Sat, 16 Aug 2003 11:37:09 -0500 Received: from duracef.shout.net (localhost [127.0.0.1]) by duracef.shout.net (8.12.9/8.12.9) with ESMTP id h7GGb9HK000640; Sat, 16 Aug 2003 11:37:09 -0500 Received: (from mec@localhost) by duracef.shout.net (8.12.9/8.12.9/Submit) id h7GGb9am000639; Sat, 16 Aug 2003 12:37:09 -0400 Date: Sat, 16 Aug 2003 16:37:00 -0000 From: Michael Elizabeth Chastain Message-Id: <200308161637.h7GGb9am000639@duracef.shout.net> To: binutils@sources.redhat.com, gdb-patches@sources.redhat.com Subject: [rfa] src-release: remove dejagnu/example/calc droppings X-SW-Source: 2003-08/txt/msg00253.txt.bz2 Here is a patch to fix pr gdb/708: http://sources.redhat.com/gdb/bugs/708 Can't build gdb 5.3 branch (and probably trunk). The patch simply adds some 'rm -f' commands to src-release to clean up the files that 'make distclean' missed. If anyone ever fixes dejagnu and re-imports it, then 'src-release' will still work; the 'rm -f' commands will have no effect. Testing: I did "make -f src-release gdb+dejagnu.tar.bz2", and then did a tar-xjf/configure/make/make-install cycle and saw that it worked. I would like to apply this to src HEAD, wait a few days, then apply it to src gdb_6_0-branch. Okay to apply to src HEAD? [Note: I have copyright assignment on file for binutils, dejagnu, gdb, among other programs, so I think I am okay to contribute to this file] Michael C 2003-08-15 Michael Chastain * src-release (do-proto-toplev): Remove junk files dejagnu/example/calc/config.status, dejagnu/example/calc/config.log. Index: src-release =================================================================== RCS file: /cvs/src/src/src-release,v retrieving revision 1.5 diff -c -3 -p -r1.5 src-release *** src-release 2 May 2003 17:29:48 -0000 1.5 --- src-release 15 Aug 2003 21:50:57 -0000 *************** do-proto-toplev: $(DEVO_SUPPORT) $(SUPPO *** 160,165 **** --- 160,173 ---- done cd etc && $(MAKE) info $(MAKE) distclean + # Kludge for pr gdb/708. 'configure' configures in + # dejagnu/example/calc, but 'make distclean' does not clean in + # dejagnu/example. Someday somebody might fix this in dejagnu, + # and then import a new dejagnu into sourceware. Right now, a + # couple of 'rm' commands will get the gdb snapshots working + # again. -- chastain 2003-08-15 + rm -f dejagnu/example/calc/config.status + rm -f dejagnu/example/calc/config.log # mkdir proto-toplev/etc (cd proto-toplev/etc; \