From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp1.linux-foundation.org ([140.211.169.13]:59229 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754319AbYJ2VaD (ORCPT ); Wed, 29 Oct 2008 17:30:03 -0400 Message-Id: <200810292120.m9TLKBbQ019370@imap1.linux-foundation.org> Subject: [patch 08/13] tags: skip ./ in filenames From: akpm@linux-foundation.org Date: Wed, 29 Oct 2008 14:20:10 -0700 Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: sam@ravnborg.org Cc: linux-kbuild@vger.kernel.org, akpm@linux-foundation.org, adobriyan@gmail.com From: Alexey Dobriyan This drives size of tags file from 68.9 MB down to 67.7 MB. Signed-off-by: Alexey Dobriyan Cc: Sam Ravnborg Signed-off-by: Andrew Morton --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN Makefile~tags-skip-in-filenames Makefile --- a/Makefile~tags-skip-in-filenames +++ a/Makefile @@ -1456,7 +1456,7 @@ define find-sources -name $1 -print; \ find $(__srctree) $(RCS_FIND_IGNORE) \ \( -name include -o -name arch -o -name '.tmp_*' \) -prune -o \ - -name $1 -print; \ + -name $1 -print | sed -e 's#^./##'; \ ) endef _