From 45a978263651815caf7d0741201175c8969c2cc3 Mon Sep 17 00:00:00 2001 From: Nickolai Zeldovich Date: Wed, 2 Sep 2009 02:03:46 -0400 Subject: fix bootblock build with gcc 4.4 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 84c5cd0..6b63eda 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,7 @@ bootblock: bootasm.S bootmain.c $(CC) $(CFLAGS) -nostdinc -I. -c bootasm.S $(LD) $(LDFLAGS) -N -e start -Ttext 0x7C00 -o bootblock.o bootasm.o bootmain.o $(OBJDUMP) -S bootblock.o > bootblock.asm - $(OBJCOPY) -S -O binary bootblock.o bootblock + $(OBJCOPY) -S -O binary -j .text bootblock.o bootblock ./sign.pl bootblock bootother: bootother.S -- cgit v1.2.3