Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=a412c1723da5133843688078b6f1f069fa9c93f7
Commit:     a412c1723da5133843688078b6f1f069fa9c93f7
Parent:     0584f9f9cb3642274cc0f289f36524827868fe68
Author:     Aneesh Kumar K.V <[EMAIL PROTECTED]>
AuthorDate: Mon Jul 9 11:43:57 2007 -0700
Committer:  Sam Ravnborg <[EMAIL PROTECTED]>
CommitDate: Tue Jul 17 14:24:55 2007 +0200

    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 <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]>
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index 4f0bd65..b4de51d 100644
--- a/Makefile
+++ b/Makefile
@@ -1333,7 +1333,7 @@ define xtags
                -I __initdata,__exitdata,__acquires,__releases \
                -I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \
                --extra=+f --c-kinds=+px \
-               --regex-asm='/ENTRY\(([^)]*)\).*/\1/'; \
+               --regex-asm='/^ENTRY\(([^)]*)\).*/\1/'; \
            $(all-kconfigs) | xargs $1 -a \
                --langdef=kconfig \
                --language-force=kconfig \
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to