# HG changeset patch # User Paul Boddie # Date 1434037736 -7200 # Node ID 37c9ff4adf57433a1fd675a0707b98f4bd53361a # Parent 799a20a2091fc5b3c5772fe7bcf7b9d426af8101 Removed superfluous flag from the linker invocation. diff -r 799a20a2091f -r 37c9ff4adf57 stage2/Makefile --- a/stage2/Makefile Thu Jun 11 17:46:36 2015 +0200 +++ b/stage2/Makefile Thu Jun 11 17:48:56 2015 +0200 @@ -87,7 +87,7 @@ mv -f $@+ $@ stage2.elf: $(OBJ) - $(LD) $(LDFLAGS) -pie -T $(@:.elf=.ld) $(OBJ) -o $@ + $(LD) $(LDFLAGS) -T $(@:.elf=.ld) $(OBJ) -o $@ .c.o: $(CC) -c $(CFLAGS) $(DEFS) $< -o $@