From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15877 invoked by alias); 20 Oct 2005 21:00: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 15857 invoked by uid 22791); 20 Oct 2005 21:00:47 -0000 Received: from s0106000f3d96cb6d.vc.shawcable.net (HELO takamaka.act-europe.fr) (24.81.152.226) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Thu, 20 Oct 2005 21:00:47 +0000 Received: by takamaka.act-europe.fr (Postfix, from userid 507) id 10F3647E79; Thu, 20 Oct 2005 14:00:45 -0700 (PDT) Date: Thu, 20 Oct 2005 21:00:00 -0000 From: Joel Brobecker To: gdb-patches@sources.redhat.com Subject: [RFA] Add ada-lex.c to YYFILES in Makefile.in Message-ID: <20051020210045.GA1017@adacore.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="AhhlLboLdkugWU4S" Content-Disposition: inline User-Agent: Mutt/1.4i X-SW-Source: 2005-10/txt/msg00171.txt.bz2 --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 356 See http://sources.redhat.com/ml/gdb/2005-10/msg00118.html for the motivation. Thanks to Daniel for the suggestion. 2005-10-20 Joel Brobecker * Makefile.in (YYFILES): Add ada-lex.c Tested on x86-linux by doing a "make -f src-release gdb.tar". The resulting tarball contained the ada-lex.c file. OK to commit? -- Joel --AhhlLboLdkugWU4S Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="Makefile.in.diff" Content-length: 442 Index: Makefile.in =================================================================== RCS file: /cvs/src/src/gdb/Makefile.in,v retrieving revision 1.756 diff -u -p -r1.756 Makefile.in --- Makefile.in 13 Oct 2005 09:31:59 -0000 1.756 +++ Makefile.in 20 Oct 2005 16:59:55 -0000 @@ -948,6 +948,7 @@ SUBDIRS = @subdirs@ YYFILES = c-exp.c \ cp-name-parser.c \ objc-exp.c \ + ada-lex.c \ ada-exp.c \ jv-exp.c \ f-exp.c m2-exp.c p-exp.c --AhhlLboLdkugWU4S--