On Wed, 2012-10-24 at 22:14 +0200, Daniel Vacek wrote: > Sorry, but the patch seems totally garbled. I've sent right fix a week ago: > > https://lkml.org/lkml/2012/10/18/510 > > From 53864fe932aa87be62f1c70944c386cff9bb9130 Mon Sep 17 00:00:00 2001 > From: Daniel Vacek <[email protected]> > Date: Thu, 18 Oct 2012 22:06:26 +0200 > Subject: [PATCH] efi: fix typo in Makefile > > --- > arch/x86/boot/compressed/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/x86/boot/compressed/Makefile > b/arch/x86/boot/compressed/Makefile > index 8a84501..059a17f 100644 > --- a/arch/x86/boot/compressed/Makefile > +++ b/arch/x86/boot/compressed/Makefile > @@ -29,7 +29,7 @@ VMLINUX_OBJS = $(obj)/vmlinux.lds > $(obj)/head_$(BITS).o $(obj)/misc.o \ > $(obj)/piggy.o > > $(obj)/eboot.o: KBUILD_CFLAGS += -fshort-wchar -mno-red-zone > -$(obj)/efi_stub_$(BITS).o: KBUILD_CLFAGS += -fshort-wchar -mno-red-zone > +$(obj)/efi_stub_$(BITS).o: KBUILD_CFLAGS += -fshort-wchar -mno-red-zone > > ifeq ($(CONFIG_EFI_STUB), y) > VMLINUX_OBJS += $(obj)/eboot.o $(obj)/efi_stub_$(BITS).o
Actually, modifying the CFLAGS doesn't make sense anyway because efi_stub_32.S and efi_stub_64.S are assembly files. This line actually wants deleting. Care to send an updated patch? -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
