All of lore.kernel.org
 help / color / mirror / Atom feed
* + basic-braille-screen-reader-support-makefile-fix.patch added to -mm tree
@ 2008-03-21 21:52 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2008-03-21 21:52 UTC (permalink / raw)
  To: mm-commits; +Cc: samuel.thibault, randy.dunlap


The patch titled
     Basic braille screen reader support makefile fix
has been added to the -mm tree.  Its filename is
     basic-braille-screen-reader-support-makefile-fix.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

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@ens-lyon.org>

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@ens-lyon.org>
Acked-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 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@ens-lyon.org are

origin.patch
input-put-ledstate-in-the-keyboard-notifier.patch
vt-notifier-extension-for-accessibility.patch
vt-notifier-extension-for-accessibility-checkpatch-fixes.patch
basic-braille-screen-reader-support.patch
basic-braille-screen-reader-support-fixes.patch
basic-braille-screen-reader-support-ppc-fix.patch
basic-braille-screen-reader-support-doc.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@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-03-21 21:54 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-21 21:52 + basic-braille-screen-reader-support-makefile-fix.patch added to -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.