Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S263232AbTIVRZL (ORCPT ); Mon, 22 Sep 2003 13:25:11 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S263253AbTIVRZL (ORCPT ); Mon, 22 Sep 2003 13:25:11 -0400 Received: from [218.44.239.73] ([218.44.239.73]:27858 "EHLO oris.opensource.gr.jp") by vger.kernel.org with ESMTP id S263232AbTIVRZE (ORCPT ); Mon, 22 Sep 2003 13:25:04 -0400 Date: Tue, 23 Sep 2003 02:24:52 +0900 Message-ID: <808yog20t7.wl@oris.opensource.jp> From: GOTO Masanori To: Sam Ravnborg , "Nathan T. Lynch" Cc: Linus Torvalds , Russell King , linux-kernel@vger.kernel.org, Kai Germaschewski , Roman Zippel , linuxppc-dev@lists.linuxppc.org Subject: Re: kbuild: Remove cscope.out during make mrproper In-Reply-To: <20030910191824.GD5604@mars.ravnborg.org> References: <20030910191411.GA5517@mars.ravnborg.org> <20030910191824.GD5604@mars.ravnborg.org> User-Agent: Wanderlust/2.9.9 (Unchained Melody) SEMI/1.14.3 (Ushinoya) FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.2 (i386-debian-linux-gnu) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya") Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1519 Lines: 45 At Wed, 10 Sep 2003 21:18:24 +0200, Sam Ravnborg wrote: > # From: "Nathan T. Lynch" > # > # The attached patch fixes the toplevel Makefile to remove cscope.out > # during make mrproper. The default name for the database that cscope > # creates is cscope.out, and this is what the cscope rule in the > # makefile uses. Currently, mrproper will leave cscope.out behind, > # which can make for interesting diffs... > # -------------------------------------------- > # > diff -Nru a/Makefile b/Makefile > --- a/Makefile Wed Sep 10 21:15:47 2003 > +++ b/Makefile Wed Sep 10 21:15:47 2003 > @@ -675,7 +675,7 @@ > .menuconfig.log \ > include/asm \ > .hdepend include/linux/modversions.h \ > - tags TAGS cscope kernel.spec \ > + tags TAGS cscope.out kernel.spec \ This patch looks fine. But it's also good idea to remove cscope.in.out, cscope.po.out (for inverted index: -q option). --- Makefile.org 2003-09-12 10:20:18.000000000 +0900 +++ Makefile 2003-09-12 10:20:00.000000000 +0900 @@ -672,7 +672,7 @@ .menuconfig.log \ include/asm \ .hdepend include/linux/modversions.h \ - tags TAGS cscope kernel.spec \ + tags TAGS cscope.out cscope.in.out cscope.po.out kernel.spec \ .tmp* # Directories removed with 'make mrproper' Regards, -- gotom - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/