diff options
author | Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> | 2007-07-09 14:43:57 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2007-07-17 08:24:55 -0400 |
commit | a412c1723da5133843688078b6f1f069fa9c93f7 (patch) | |
tree | 516896e6983de91fca41fb25f286e8d88c90a81d /Makefile | |
parent | 0584f9f9cb3642274cc0f289f36524827868fe68 (diff) |
kbuild: fix the warning when running make tags
make tags was giving the below warning.
ctags: Warning: arch/x86_64/kernel/head.S:124: null expansion of name
pattern "\1"
Fix the same by making sure we taken only ENTRY pattern found at the
begining of the line.
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1333,7 +1333,7 @@ define xtags | |||
1333 | -I __initdata,__exitdata,__acquires,__releases \ | 1333 | -I __initdata,__exitdata,__acquires,__releases \ |
1334 | -I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \ | 1334 | -I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \ |
1335 | --extra=+f --c-kinds=+px \ | 1335 | --extra=+f --c-kinds=+px \ |
1336 | --regex-asm='/ENTRY\(([^)]*)\).*/\1/'; \ | 1336 | --regex-asm='/^ENTRY\(([^)]*)\).*/\1/'; \ |
1337 | $(all-kconfigs) | xargs $1 -a \ | 1337 | $(all-kconfigs) | xargs $1 -a \ |
1338 | --langdef=kconfig \ | 1338 | --langdef=kconfig \ |
1339 | --language-force=kconfig \ | 1339 | --language-force=kconfig \ |