aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHirokazu Takata <takata@linux-m32r.org>2009-11-09 08:51:35 +0900
committerHirokazu Takata <takata@linux-m32r.org>2009-11-09 09:00:50 +0900
commita556bec9955c8e47b40a87dbfeef6f24d3b2228f (patch)
tree4339e86f9daa447265c6c2c18df7a5ef76d13d86
parentMerge branch 'kvm-updates/2.6.32' of git://git.kernel.org/pub/scm/virt/kvm/kvm (diff)
downloadlinux-dev-a556bec9955c8e47b40a87dbfeef6f24d3b2228f.tar.xz
linux-dev-a556bec9955c8e47b40a87dbfeef6f24d3b2228f.zip
m32r: fix arch/m32r/boot/compressed/Makefile
- Fix a comment string - Fix a typo of $(suffix-y) Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
-rw-r--r--arch/m32r/boot/compressed/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/m32r/boot/compressed/Makefile b/arch/m32r/boot/compressed/Makefile
index 1003880d0dfd..177716b1d613 100644
--- a/arch/m32r/boot/compressed/Makefile
+++ b/arch/m32r/boot/compressed/Makefile
@@ -1,5 +1,5 @@
#
-# linux/arch/sh/boot/compressed/Makefile
+# linux/arch/m32r/boot/compressed/Makefile
#
# create a compressed vmlinux image from the original vmlinux
#
@@ -47,5 +47,5 @@ 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
+$(obj)/piggy.o: $(obj)/vmlinux.scr $(obj)/vmlinux.bin.$(suffix-y) FORCE
$(call if_changed,ld)