The patch titled Basic braille screen reader support makefile fix has been removed from the -mm tree. Its filename was basic-braille-screen-reader-support-makefile-fix.patch This patch was dropped because it was folded into basic-braille-screen-reader-support.patch The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: Basic braille screen reader support makefile fix From: Samuel Thibault <samuel.thibault@xxxxxxxxxxxx> Randy Dunlap, le Wed 19 Mar 2008 11:57:26 -0700, a écrit : > when O=dir is used in make: > > CC drivers/accessibility/braille/braille_console.o > Assembler messages: > Fatal error: can't create drivers/accessibility/braille/braille_console.o: No such file or directory > CC crypto/aes_generic.o > make[3]: *** [drivers/accessibility/braille/braille_console.o] Error 2 > make[2]: *** [drivers/accessibility] Error 2 > make[1]: *** [drivers] Error 2 Oh, right, the patch below should fix it Properly recurse Makefiles into accessibility and accessibility/braille/ Signed-off-by: Samuel Thibault <samuel.thibault@xxxxxxxxxxxx> Acked-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/accessibility/Makefile | 2 +- drivers/accessibility/braille/Makefile | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/accessibility/Makefile~basic-braille-screen-reader-support-makefile-fix drivers/accessibility/Makefile --- a/drivers/accessibility/Makefile~basic-braille-screen-reader-support-makefile-fix +++ a/drivers/accessibility/Makefile @@ -1 +1 @@ -obj-$(CONFIG_A11Y_BRAILLE_CONSOLE) += braille/braille_console.o +obj-y += braille/ diff -puN /dev/null drivers/accessibility/braille/Makefile --- /dev/null +++ a/drivers/accessibility/braille/Makefile @@ -0,0 +1 @@ +obj-$(CONFIG_A11Y_BRAILLE_CONSOLE) += braille_console.o _ Patches currently in -mm which might be from samuel.thibault@xxxxxxxxxxxx are origin.patch consoles-switch-to-int-put_char-method.patch basic-braille-screen-reader-support.patch basic-braille-screen-reader-support-makefile-fix.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html