[syslinux:lwip] sysdump: add $(LIBS) to the link rule

syslinux-bot for H. Peter Anvin hpa at zytor.com
Tue Apr 26 01:33:02 PDT 2011


Commit-ID:  30e41c2a1d565332c8f81a34b356be92ad863603
Gitweb:     http://syslinux.zytor.com/commit/30e41c2a1d565332c8f81a34b356be92ad863603
Author:     H. Peter Anvin <hpa at zytor.com>
AuthorDate: Tue, 26 Apr 2011 01:29:28 -0700
Committer:  H. Peter Anvin <hpa at zytor.com>
CommitDate: Tue, 26 Apr 2011 01:29:28 -0700

sysdump: add $(LIBS) to the link rule

$(C_LIBS) doesn't include $(LIBS) so we need to add it explicitly.

Signed-off-by: H. Peter Anvin <hpa at zytor.com>


---
 com32/sysdump/Makefile |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/com32/sysdump/Makefile b/com32/sysdump/Makefile
index e429099..98e7f15 100644
--- a/com32/sysdump/Makefile
+++ b/com32/sysdump/Makefile
@@ -45,7 +45,7 @@ CFLAGS    += -DDATE='"$(DATE)"'
 
 all: $(MODULES) $(TESTFILES)
 
-sysdump.elf : $(OBJS) $(C_LIBS)
+sysdump.elf : $(OBJS) $(LIBS) $(C_LIBS)
 	$(LD) $(LDFLAGS) -o $@ $^
 
 tidy dist:



More information about the Syslinux-commits mailing list