Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f8bea58b6a6e825662dbd8d408568883cfddef0e
Commit:     f8bea58b6a6e825662dbd8d408568883cfddef0e
Parent:     b381a14288e6e06084206601ee252f8c357e796f
Author:     Yinghai Lu <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 16 00:28:06 2007 -0700
Committer:  Thomas Gleixner <[EMAIL PROTECTED]>
CommitDate: Wed Oct 17 21:39:23 2007 +0200

    kbuild: fix typo SRCARCH in find_sources
    
    otherwise get the two copy file list in SRCARCH
    
    for cscope:
    C symbol: start_kernel
    
      File           Function            Line
    0 proto.h        <global>              11 extern void start_kernel(void );
    1 start_kernel.h <global>              10 extern asmlinkage void __init 
start_kernel(void );
    2 head32.c       i386_start_kernel     37 start_kernel();
    3 head32.c       i386_start_kernel     37 start_kernel();
    4 head64.c       x86_64_start_kernel   85 start_kernel();
    5 head64.c       x86_64_start_kernel   85 start_kernel();
    6 head_32.S      options              199 cmpb $0,%cl #the first CPU calls 
start_kernel
    7 head_32.S      options              199 cmpb $0,%cl #the first CPU calls 
start_kernel
    8 enlighten.c    xen_start_kernel    1145 start_kernel();
    9 enlighten.c    xen_start_kernel    1145 start_kernel();
    a lguest.c       lguest_init         1095 start_kernel();
    b main.c         start_kernel         513 asmlinkage void __init 
start_kernel(void )
    
    after the patch:
    C symbol: start_kernel
    
      File           Function            Line
    0 proto.h        <global>              11 extern void start_kernel(void );
    1 start_kernel.h <global>              10 extern asmlinkage void __init 
start_kernel(void );
    2 head32.c       i386_start_kernel     37 start_kernel();
    3 head64.c       x86_64_start_kernel   85 start_kernel();
    4 head_32.S      options              199 cmpb $0,%cl #the first CPU calls 
start_kernel
    5 enlighten.c    xen_start_kernel    1145 start_kernel();
    6 lguest.c       lguest_init         1095 start_kernel();
    7 main.c         start_kernel         513 asmlinkage void __init 
start_kernel(void )
    
    Signed-off-by: Yinghai Lu <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 Makefile |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index ed65de7..529b904 100644
--- a/Makefile
+++ b/Makefile
@@ -1325,8 +1325,8 @@ ALLSOURCE_ARCHS := $(ARCH) $(SRCARCH)
 endif
 
 define find-sources
-        ( for ARCH in $(ALLSOURCE_ARCHS) ; do \
-              find $(__srctree)arch/$${SRCARCH} $(RCS_FIND_IGNORE) \
+        ( for arch in $(ALLSOURCE_ARCHS) ; do \
+              find $(__srctree)arch/$${arch} $(RCS_FIND_IGNORE) \
                    -name $1 -print; \
          done ; \
          find $(__srctree)security/selinux/include $(RCS_FIND_IGNORE) \
@@ -1334,8 +1334,8 @@ define find-sources
          find $(__srctree)include $(RCS_FIND_IGNORE) \
               \( -name config -o -name 'asm-*' \) -prune \
               -o -name $1 -print; \
-         for ARCH in $(ALLINCLUDE_ARCHS) ; do \
-              find $(__srctree)include/asm-$${SRCARCH} $(RCS_FIND_IGNORE) \
+         for arch in $(ALLINCLUDE_ARCHS) ; do \
+              find $(__srctree)include/asm-$${arch} $(RCS_FIND_IGNORE) \
                    -name $1 -print; \
          done ; \
          find $(__srctree)include/asm-generic $(RCS_FIND_IGNORE) \
-
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