From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6878 invoked by alias); 4 Mar 2004 22:02:02 -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 6871 invoked from network); 4 Mar 2004 22:02:01 -0000 Received: from unknown (HELO nevyn.them.org) (66.93.172.17) by sources.redhat.com with SMTP; 4 Mar 2004 22:02:01 -0000 Received: from drow by nevyn.them.org with local (Exim 4.30 #1 (Debian)) id 1Az0un-0007lu-ED for ; Thu, 04 Mar 2004 17:02:01 -0500 Date: Fri, 19 Mar 2004 00:09:00 -0000 From: Daniel Jacobowitz To: gdb-patches@sources.redhat.com Subject: [patch/6.1] Gdbserver snapshot fix Message-ID: <20040304220200.GA29799@nevyn.them.org> Mail-Followup-To: gdb-patches@sources.redhat.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.1i X-SW-Source: 2004-03/txt/msg00075.txt.bz2 Message-ID: <20040319000900.Cdx_59lMxIEm9-2nlK7DMLVbSxqY5_wdzsEOCNB2sdw@z> When building from a snapshot tarball for arm-linux, I discovered that an (incorrect, obviously) config.h had been saved in the tarball. That's because I never added it to distclean when I gave gdbserver its own config.h. I'm not quite sure why this wasn't a problem last release. Checked in to HEAD and 6.1. -- Daniel Jacobowitz MontaVista Software Debian GNU/Linux Developer 2004-03-04 Daniel Jacobowitz * Makefile.in (distclean): Remove config.h, stamp-h, and config.log. Unify with other clean targets. --- src/gdb/gdbserver/Makefile.in 2004-03-02 11:57:42.000000000 -0500 +++ src/gdb/gdbserver/Makefile.in 2004-03-02 14:34:13.000000000 -0500 @@ -1,5 +1,5 @@ # Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, -# 1999, 2000, 2001, 2002 Free Software Foundation, Inc. +# 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. # This file is part of GDB. @@ -200,12 +200,8 @@ rm -f reg-arm.c reg-i386.c reg-ia64.c reg-m68k.c reg-mips.c rm -f reg-ppc.c reg-sh.c reg-x86-64.c reg-i386-linux.c -distclean: clean - rm -f nm.h tm.h xm.h config.status - rm -f Makefile - -maintainer-clean realclean: clean - rm -f nm.h tm.h xm.h config.status +maintainer-clean realclean distclean: clean + rm -f nm.h tm.h xm.h config.status config.h stamp-h config.log rm -f Makefile STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb