Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e2a57a815933b2d2e375f9de6be223098024ab90
Commit:     e2a57a815933b2d2e375f9de6be223098024ab90
Parent:     d39d5ed97e2b8e089f85ffaf5909768d83147be0
Author:     Maarten Bressers <[EMAIL PROTECTED]>
AuthorDate: Mon Oct 8 15:59:13 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Mon Oct 8 16:06:51 2007 -0700

    Correct Makefile rule for generating custom keymap
    
    When building a custom keymap, after setting GENERATE_KEYMAP := 1 in
    drivers/char/Makefile, the kernel build fails like this:
    
        CC      drivers/char/vt.o
      make[2]: *** No rule to make target `drivers/char/%.map', needed by 
`drivers/char/defkeymap.c'.  Stop.
      make[1]: *** [drivers/char] Error 2
      make: *** [drivers] Error 2
    
    This was caused by commit af8b128719f5248e542036ea994610a29d0642a6, which
    deleted a necessary colon from the Makefile rule that generates the keymap,
    since that rule contains both a target and a target-pattern.  The following
    patch puts the colon back:
    
    Signed-off-by: Maarten Bressers <[EMAIL PROTECTED]>
    Cc: Yoichi Yuasa <[EMAIL PROTECTED]>
    Cc: Ralf Baechle <[EMAIL PROTECTED]>
    Cc: Sam Ravnborg <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 drivers/char/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/char/Makefile b/drivers/char/Makefile
index d68ddbe..c78ff26 100644
--- a/drivers/char/Makefile
+++ b/drivers/char/Makefile
@@ -129,7 +129,7 @@ $(obj)/defkeymap.o:  $(obj)/defkeymap.c
 
 ifdef GENERATE_KEYMAP
 
-$(obj)/defkeymap.c $(obj)/%.c: $(src)/%.map
+$(obj)/defkeymap.c: $(obj)/%.c: $(src)/%.map
        loadkeys --mktable $< > [EMAIL PROTECTED]
        sed -e 's/^static *//' [EMAIL PROTECTED] > $@
        rm [EMAIL PROTECTED]
-
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