From patchwork Thu Jul 14 11:56:46 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Horst Kronstorfer X-Patchwork-Id: 104669 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 3F7B5B6F68 for ; Thu, 14 Jul 2011 22:07:05 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4D0492808D; Thu, 14 Jul 2011 14:07:03 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 8qXT1DJXFxGJ; Thu, 14 Jul 2011 14:07:03 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2035F2807F; Thu, 14 Jul 2011 14:07:01 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DC1432807F for ; Thu, 14 Jul 2011 14:06:58 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id HHvCuZzoNynh for ; Thu, 14 Jul 2011 14:06:58 +0200 (CEST) X-Greylist: delayed 599 seconds by postgrey-1.27 at theia; Thu, 14 Jul 2011 14:06:56 CEST X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail1.frequentis.com (mail1.frequentis.com [212.186.194.131]) by theia.denx.de (Postfix) with ESMTPS id 3E64C2807E for ; Thu, 14 Jul 2011 14:06:56 +0200 (CEST) X-IronPort-AV: E=Sophos;i="4.65,528,1304287200"; d="scan'208";a="8129868" Received: from vie191nt.frequentis.frq ([172.16.1.191]) by mail1.frequentis.com with ESMTP; 14 Jul 2011 13:56:57 +0200 Received: from vie26ux.frequentis.frq (172.16.2.26) by VIE191NT.frequentis.frq (172.16.1.191) with Microsoft SMTP Server id 14.1.289.1; Thu, 14 Jul 2011 13:56:56 +0200 Received: by vie26ux.frequentis.frq (Postfix, from userid 1144) id 01EED29709; Thu, 14 Jul 2011 13:56:56 +0200 (CEST) From: Horst Kronstorfer To: Date: Thu, 14 Jul 2011 13:56:46 +0200 Message-ID: <1310644606-2813-1-git-send-email-hkronsto@frequentis.com> X-Mailer: git-send-email 1.7.6 MIME-Version: 1.0 Cc: Horst Kronstorfer Subject: [U-Boot] [PATCH] Let target 'cscope' follow symbolic links X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Without telling 'find' to follow symbolic links, files under include/asm and arch/$(ARCH)/include/asm/arch are not added to the cscope file list. Signed-off-by: Horst Kronstorfer --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index e56fa02..deff642 100644 --- a/Makefile +++ b/Makefile @@ -479,7 +479,7 @@ etags: etags -a -o $(obj)etags `find $(TAG_SUBDIRS) \ -name '*.[chS]' -print` cscope: - find $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files + find -L $(TAG_SUBDIRS) -name '*.[chS]' -print > cscope.files cscope -b -q -k SYSTEM_MAP = \