All of lore.kernel.org
 help / color / mirror / Atom feed
From: akpm@linux-foundation.org
To: mm-commits@vger.kernel.org
Cc: samuel.thibault@ens-lyon.org, randy.dunlap@oracle.com
Subject: + basic-braille-screen-reader-support-makefile-fix.patch added to -mm tree
Date: Fri, 21 Mar 2008 14:52:34 -0700	[thread overview]
Message-ID: <200803212152.m2LLqZUt012175@imap1.linux-foundation.org> (raw)


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

                 reply	other threads:[~2008-03-21 21:54 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200803212152.m2LLqZUt012175@imap1.linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mm-commits@vger.kernel.org \
    --cc=randy.dunlap@oracle.com \
    --cc=samuel.thibault@ens-lyon.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.