From 6ee958bf9f830b59fd10d3a83c0fa1d5f30d4809 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 11 Nov 2009 16:29:53 -0800 Subject: dos: don't add the linker script twice on the ld command line My version of the linker can deal with it, but others might not be so smart. Signed-off-by: H. Peter Anvin --- dos/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dos') diff --git a/dos/Makefile b/dos/Makefile index 2f1b7981..6d87d64a 100644 --- a/dos/Makefile +++ b/dos/Makefile @@ -50,7 +50,7 @@ spotless: clean installer: syslinux.elf: $(OBJS) libcom.a com16.ld - $(LD) $(LDFLAGS) -o $@ $^ + $(LD) $(LDFLAGS) -o $@ $(filter-out %.ld,$^) libcom.a: $(LIBOBJS) -rm -f $@ -- cgit v1.2.3