From patchwork Fri Feb 19 20:45:08 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michal Marek X-Patchwork-Id: 80831 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o1JKjbGk024219 for ; Fri, 19 Feb 2010 20:45:37 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754034Ab0BSUpe (ORCPT ); Fri, 19 Feb 2010 15:45:34 -0500 Received: from cantor.suse.de ([195.135.220.2]:54881 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751775Ab0BSUpe (ORCPT ); Fri, 19 Feb 2010 15:45:34 -0500 Received: from relay2.suse.de (charybdis-ext.suse.de [195.135.221.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.suse.de (Postfix) with ESMTP id 4766E93A00; Fri, 19 Feb 2010 21:45:33 +0100 (CET) Received: by sepie.suse.cz (Postfix, from userid 10020) id F311D764A8; Fri, 19 Feb 2010 21:45:32 +0100 (CET) From: Michal Marek To: linux-kbuild@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Guennadi Liakhovetski , WANG Cong Subject: [PATCH] tags: Use $SRCARCH Date: Fri, 19 Feb 2010 21:45:08 +0100 Message-Id: <1266612308-2911-1-git-send-email-mmarek@suse.cz> X-Mailer: git-send-email 1.6.5.3 Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Fri, 19 Feb 2010 20:45:37 +0000 (UTC) diff --git a/scripts/tags.sh b/scripts/tags.sh index c122041..9f45953 100755 --- a/scripts/tags.sh +++ b/scripts/tags.sh @@ -5,7 +5,7 @@ # mode may be any of: tags, TAGS, cscope # # Uses the following environment variables: -# ARCH, SUBARCH, srctree, src, obj +# ARCH, SUBARCH, SRCARCH, srctree, src, obj if [ "$KBUILD_VERBOSE" = "1" ]; then set -x @@ -70,7 +70,7 @@ find_sources() all_sources() { - find_arch_include_sources ${ARCH} '*.[chS]' + find_arch_include_sources ${SRCARCH} '*.[chS]' if [ ! -z "$archinclude" ]; then find_arch_include_sources $archinclude '*.[chS]' fi