The patch titled kbuild: allow multi-word $M in Makefile.modpost has been removed from the -mm tree. Its filename is kbuild-allow-multi-word-m-in-makefilemodpost.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: kbuild: allow multi-word $M in Makefile.modpost From: Greg Banks <gnb@xxxxxxx> 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@xxxxxxxxxxxxxxxxx> Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- scripts/Makefile.modpost | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN scripts/Makefile.modpost~kbuild-allow-multi-word-m-in-makefilemodpost scripts/Makefile.modpost --- a/scripts/Makefile.modpost~kbuild-allow-multi-word-m-in-makefilemodpost +++ a/scripts/Makefile.modpost @@ -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))) _ Patches currently in -mm which might be from gnb@xxxxxxx are origin.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