From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8988 invoked by alias); 30 Mar 2004 22:10:51 -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 8966 invoked from network); 30 Mar 2004 22:10:49 -0000 Received: from unknown (HELO takamaka.act-europe.fr) (142.179.108.108) by sources.redhat.com with SMTP; 30 Mar 2004 22:10:49 -0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 9CB6E47D62; Tue, 30 Mar 2004 14:10:48 -0800 (PST) Date: Tue, 30 Mar 2004 22:10:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: Re: [RFA/testsuite/ada] Update Makefile.in to handle gdb.ada subdir Message-ID: <20040330221048.GM888@gnat.com> References: <20040329200551.GG888@gnat.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="GxcwvYAGnODwn7V8" Content-Disposition: inline In-Reply-To: <20040329200551.GG888@gnat.com> User-Agent: Mutt/1.4i X-SW-Source: 2004-03/txt/msg00750.txt.bz2 --GxcwvYAGnODwn7V8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 382 [Resent with the patch, this time] This patch is dependent on the gdb.ada subdirectory being created: http://sources.redhat.com/ml/gdb-patches/2004-03/msg00727.html It updates testsuite/Makefile.in to include gdb.ada in the list of subdirs. 2004-03-29 J. Brobecker * Makefile.in (ALL_SUBDIRS) Add gdb.ada. Ok to apply? Thanks, -- Joel --GxcwvYAGnODwn7V8 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Makefile.in.diff" Content-length: 750 Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/testsuite/Makefile.in,v retrieving revision 1.8 diff -u -p -r1.8 Makefile.in --- Makefile.in 23 Aug 2003 03:55:58 -0000 1.8 +++ Makefile.in 30 Mar 2004 22:10:07 -0000 @@ -35,8 +35,8 @@ SHELL = @SHELL@ EXEEXT = @EXEEXT@ SUBDIRS = @subdirs@ RPATH_ENVVAR = @RPATH_ENVVAR@ -ALL_SUBDIRS = gdb.arch gdb.asm gdb.base gdb.cp gdb.disasm gdb.java gdb.mi \ - gdb.objc gdb.threads gdb.trace $(SUBDIRS) +ALL_SUBDIRS = gdb.ada gdb.arch gdb.asm gdb.base gdb.cp gdb.disasm \ + gdb.java gdb.mi gdb.objc gdb.threads gdb.trace $(SUBDIRS) EXPECT = `if [ -f $${rootme}/../../expect/expect ] ; then \ echo $${rootme}/../../expect/expect ; \ --GxcwvYAGnODwn7V8--