From patchwork Tue Jun 8 20:20:43 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Merrill X-Patchwork-Id: 55026 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) by ozlabs.org (Postfix) with SMTP id CD9BBB7D68 for ; Wed, 9 Jun 2010 06:21:05 +1000 (EST) Received: (qmail 28634 invoked by alias); 8 Jun 2010 20:21:02 -0000 Received: (qmail 28616 invoked by uid 22791); 8 Jun 2010 20:21:00 -0000 X-SWARE-Spam-Status: No, hits=-5.9 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_HI, SPF_HELO_PASS, T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 08 Jun 2010 20:20:56 +0000 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o58KKkgc010525 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Tue, 8 Jun 2010 16:20:46 -0400 Received: from [IPv6:::1] (ovpn01.gateway.prod.ext.phx2.redhat.com [10.5.9.1]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o58KKjIt000514; Tue, 8 Jun 2010 16:20:45 -0400 Message-ID: <4C0EA61B.9040807@redhat.com> Date: Tue, 08 Jun 2010 16:20:43 -0400 From: Jason Merrill User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.10) Gecko/20100602 Lightning/1.0b1 Shredder/3.0.6pre MIME-Version: 1.0 Newsgroups: gmane.comp.gcc.patches To: Steven Bosscher CC: Richard Guenther , "Joseph S. Myers" , GCC Patches , mark@codesourcery.com Subject: Re: [patch] Move C front end to its own directory (1/3) References: In-Reply-To: Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org I have found that I need this additional patch. Any objection? commit 543e778629a857bde16cd634b44974ec5b4d8413 Author: Jason Merrill Date: Tue Jun 8 16:13:11 2010 -0400 * Makefile.in (TAGS): Collect tags info from c-family. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index a190225..806b4b1 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -4999,7 +4999,7 @@ TAGS: lang.tags incs="$$incs --include $$dir/TAGS.sub"; \ fi; \ done; \ - etags -o TAGS.sub *.h *.c; \ + etags -o TAGS.sub c-family/*.h c-family/*.c *.h *.c; \ etags --include TAGS.sub $$incs) # -----------------------------------------------------