Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d8d2e78a061e1ace98544b100b7837c620fbb950
Commit:     d8d2e78a061e1ace98544b100b7837c620fbb950
Parent:     ab19f8794a66910ef9b33041ccfa05b6b12ab6c9
Author:     Sam Ravnborg <[EMAIL PROTECTED]>
AuthorDate: Mon Oct 22 11:30:45 2007 +0200
Committer:  Sam Ravnborg <[EMAIL PROTECTED]>
CommitDate: Mon Oct 22 20:04:37 2007 +0200

    kbuild: allow depmod in cross builds again
    
    depmod from module-init-tools 3.3-pre2 are reported
    to work fine in cross build.
    depmod from module-init-tools 3.1-pre5 are known to SEGV
    
    Do not workaround older module-init-tools bugs here.
    The right fix is for users to upgrade module-init-tools.
    
    Signed-off-by: Sam Ravnborg <[EMAIL PROTECTED]>
    Cc: Geert Uytterhoeven <[EMAIL PROTECTED]>
---
 Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Makefile b/Makefile
index f4238b2..264f37b 100644
--- a/Makefile
+++ b/Makefile
@@ -1505,7 +1505,7 @@ quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN   
$(wildcard $(rm-files))
 # and we build for the host arch
 quiet_cmd_depmod = DEPMOD  $(KERNELRELEASE)
       cmd_depmod = \
-       if [ -r System.map -a -x $(DEPMOD) -a "$(SUBARCH)" = "$(ARCH)" ]; then \
+       if [ -r System.map -a -x $(DEPMOD) ]; then                              
\
                $(DEPMOD) -ae -F System.map                                     
\
                $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) -r)   
\
                $(KERNELRELEASE);                                               
\
-
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