public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kbuild: allow multi-word $M in Makefile.modpost
@ 2006-10-10  1:59 Greg Banks
  0 siblings, 0 replies; only message in thread
From: Greg Banks @ 2006-10-10  1:59 UTC (permalink / raw)
  To: Kai Germaschewski, Sam Ravnborg; +Cc: Linux Kernel Mailing List

Some people want to do crazy things like pass multiple directories
as the value of $(SUBDIRS) or $M.  Mostly this kinda works, except
that Makefile.modpost constructs a modpost commandline which fails
modpost's argument parsing.  This patch fixes that little wrinkle.

Signed-off-by: Greg Banks <gnb@melbourne.sgi.com>
---

 scripts/Makefile.modpost |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

Index: linux-git-20061009/scripts/Makefile.modpost
===================================================================
--- linux-git-20061009.orig/scripts/Makefile.modpost	2006-10-09 17:01:57.000000000 +1000
+++ linux-git-20061009/scripts/Makefile.modpost	2006-10-10 11:41:20.952515917 +1000
@@ -44,7 +44,7 @@ include scripts/Kbuild.include
 include scripts/Makefile.lib
 
 kernelsymfile := $(objtree)/Module.symvers
-modulesymfile := $(KBUILD_EXTMOD)/Module.symvers
+modulesymfile := $(firstword $(KBUILD_EXTMOD))/Module.symvers
 
 # Step 1), find all modules listed in $(MODVERDIR)/
 __modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))


-- 
Greg Banks, R&D Software Engineer, SGI Australian Software Group.
I don't speak for SGI.

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

only message in thread, other threads:[~2006-10-10  1:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-10  1:59 [PATCH] kbuild: allow multi-word $M in Makefile.modpost Greg Banks

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox