tags: Use $SRCARCH
authorMichal Marek <[email protected]>
Fri, 19 Feb 2010 15:18:41 +0000 (16:18 +0100)
committerMichal Marek <[email protected]>
Mon, 22 Feb 2010 10:23:23 +0000 (11:23 +0100)
$ make mrproper
$ make tags
  GEN     tags
  find: `arch/x86_64/': No such file or directory

Caused by commit f81b1be (tags: include headers before source files)

Cc: Guennadi Liakhovetski <[email protected]>
Acked-by: WANG Cong <[email protected]>
Signed-off-by: Michal Marek <[email protected]>
scripts/tags.sh

index c1220419e59d50b9cb105b6c1f8facdd852929c6..9f459536f289a8aaa2ae8c3457a91897312afd26 100755 (executable)
@@ -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