The patch titled Subject: m32r: consistently use "suffix-$(...)" has been added to the -mm tree. Its filename is m32r-consistently-use-suffix.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 *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Subject: m32r: consistently use "suffix-$(...)" a556bec9955c ("m32r: fix arch/m32r/boot/compressed/Makefile") changed "$(suffix_y)" to "$(suffix-y)", but didn't update any location where "suffix_y" is set, causing: make[5]: *** No rule to make target `arch/m32r/boot/compressed/vmlinux.bin.', needed by `arch/m32r/boot/compressed/piggy.o'. Stop. make[4]: *** [arch/m32r/boot/compressed/vmlinux] Error 2 make[3]: *** [zImage] Error 2 Correct the other locations to fix this. Signed-off-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Cc: Hirokazu Takata <takata@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/m32r/boot/compressed/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN arch/m32r/boot/compressed/Makefile~m32r-consistently-use-suffix arch/m32r/boot/compressed/Makefile --- a/arch/m32r/boot/compressed/Makefile~m32r-consistently-use-suffix +++ a/arch/m32r/boot/compressed/Makefile @@ -43,9 +43,9 @@ endif OBJCOPYFLAGS += -R .empty_zero_page -suffix_$(CONFIG_KERNEL_GZIP) = gz -suffix_$(CONFIG_KERNEL_BZIP2) = bz2 -suffix_$(CONFIG_KERNEL_LZMA) = lzma +suffix-$(CONFIG_KERNEL_GZIP) = gz +suffix-$(CONFIG_KERNEL_BZIP2) = bz2 +suffix-$(CONFIG_KERNEL_LZMA) = lzma $(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE $(call if_changed,ld) _ Subject: Subject: m32r: consistently use "suffix-$(...)" Patches currently in -mm which might be from geert@xxxxxxxxxxxxxx are origin.patch linux-next.patch mn10300-fix-pull-clearing-restore_sigmask-into-block_sigmask-fallout.patch m32r-remove-duplicate-definition-of-ptrace_o_tracesysgood.patch m32r-fix-pull-clearing-restore_sigmask-into-block_sigmask-fallout.patch m32r-fix-fix-breakage-from-m32r-use-generic-ptrace_resume-code-fallout.patch m32r-consistently-use-suffix.patch m32r-add-memcpy-for-config_kernel_gzip=y.patch m32r-make-memset-global-for-config_kernel_bzip2=y.patch mn10300-only-add-mmem-funcs-to-kbuild_cflags-if-gcc-supports-it.patch frv-kill-used-but-uninitialized-variable.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