Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753107Ab3IJEER (ORCPT ); Tue, 10 Sep 2013 00:04:17 -0400 Received: from relmlor4.renesas.com ([210.160.252.174]:60775 "EHLO relmlor4.renesas.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751648Ab3IJEEP (ORCPT ); Tue, 10 Sep 2013 00:04:15 -0400 X-Greylist: delayed 301 seconds by postgrey-1.27 at vger.kernel.org; Tue, 10 Sep 2013 00:04:14 EDT X-IronPort-AV: E=Sophos;i="4.90,875,1371049200"; d="scan'208";a="139831218" Date: Tue, 10 Sep 2013 12:59:11 +0900 Message-id: From: Hirokazu Takata To: Ben Hutchings Cc: linux-kernel@vger.kernel.org, stable@vger.kernel.org, akpm@linux-foundation.org, Geert Uytterhoeven , Linus Torvalds , Hirokazu Takata Subject: Re: [112/121] m32r: consistently use "suffix-$(...)" In-reply-to: References: User-Agent: Wanderlust/2.15.9 (Almost Unreal) Emacs/23.4 Mule/6.0 (HANACHIRUSATO) Renesas-ECN: H07-0010RT MIME-version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2238 Lines: 62 Acked-by: Hirokazu Takata Sorry, it is my old mistake that still remained in the m32r kernel. Please apply this patch. Thanks, -- Takata From: Ben Hutchings Subject: [112/121] m32r: consistently use "suffix-$(...)" Date: Sun, 08 Sep 2013 03:52:01 +0100 > 3.2.51-rc1 review patch. If anyone has any objections, please let me know. > > ------------------ > > From: Geert Uytterhoeven > > commit df12aef6a19bb2d69859a94936bda0e6ccaf3327 upstream. > > Commit 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 > Cc: Hirokazu Takata > Signed-off-by: Andrew Morton > Signed-off-by: Linus Torvalds > Signed-off-by: Ben Hutchings > --- > arch/m32r/boot/compressed/Makefile | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/arch/m32r/boot/compressed/Makefile b/arch/m32r/boot/compressed/Makefile > index 177716b..01729c2 100644 > --- a/arch/m32r/boot/compressed/Makefile > +++ b/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) > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/