From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1764665AbXKNUd6 (ORCPT ); Wed, 14 Nov 2007 15:33:58 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755890AbXKNUdu (ORCPT ); Wed, 14 Nov 2007 15:33:50 -0500 Received: from pasmtpb.tele.dk ([80.160.77.98]:37172 "EHLO pasmtpB.tele.dk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755722AbXKNUdt (ORCPT ); Wed, 14 Nov 2007 15:33:49 -0500 Date: Wed, 14 Nov 2007 21:35:29 +0100 From: Sam Ravnborg To: Kamalesh Babulal Cc: LKML , linux-kbuild@vger.kernel.org Subject: Re: [2.6.24-rc1-git] Warning with make tags and cscope Message-ID: <20071114203529.GB10669@uranus.ravnborg.org> References: <47282D7B.3010109@linux.vnet.ibm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <47282D7B.3010109@linux.vnet.ibm.com> User-Agent: Mutt/1.4.2.1i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Hi Kamalesh. Thanks for reporting! On Wed, Oct 31, 2007 at 12:53:39PM +0530, Kamalesh Babulal wrote: > Hi, > > Get following warning while building tags and cscope index files > > $ make tags -j 2 > MAKE tags > find: arch/i386: No such file or directory > find: arch/i386: No such file or directory > find: arch/i386: No such file or directory > $ make cscope -j 2 > FILELST cscope.files > find: arch/i386: No such file or directory > MAKE cscope.out Sorry for getting back to you so late. Following patch fixes the issue. Sam commit 5683c81430f9cf2a2eaf71ce93291f00b528b6c4 Author: WANG Cong Date: Thu Nov 8 17:22:11 2007 +0800 kbuild: fix cscope so it does not emit warnings This patch fixed the following errors when doing "make cscope" and "make cscope ARCH=um". FILELST cscope.files find: arch/i386: No such file or directory MAKE cscope.out FILELST cscope.files find: include/asm-i386: No such file or directory MAKE cscope.out In addition it teach kbuild to delete ncscope.out at mrproper Signed-off-by: WANG Cong Signed-off-by: Sam Ravnborg diff --git a/Makefile b/Makefile index cb740d4..1d48b0f 100644 --- a/Makefile +++ b/Makefile @@ -1086,7 +1086,7 @@ MRPROPER_DIRS += include/config include2 usr/include MRPROPER_FILES += .config .config.old include/asm .version .old_version \ include/linux/autoconf.h include/linux/version.h \ include/linux/utsrelease.h \ - Module.symvers tags TAGS cscope* + Module.symvers tags TAGS *cscope* # clean - Delete most, but leave enough to build external modules # @@ -1318,7 +1318,7 @@ endif ifeq ($(ALLSOURCE_ARCHS),) ifeq ($(ARCH),um) -ALLINCLUDE_ARCHS := $(ARCH) $(SUBARCH) +ALLINCLUDE_ARCHS := $(SRCARCH) $(SUBARCH) else ALLINCLUDE_ARCHS := $(SRCARCH) endif @@ -1327,12 +1327,7 @@ else ALLINCLUDE_ARCHS := $(ALLSOURCE_ARCHS) endif -# Take care of arch/x86 -ifeq ($(ARCH), $(SRCARCH)) -ALLSOURCE_ARCHS := $(ARCH) -else -ALLSOURCE_ARCHS := $(ARCH) $(SRCARCH) -endif +ALLSOURCE_ARCHS := $(SRCARCH) define find-sources ( for arch in $(ALLSOURCE_ARCHS) ; do \