summaryrefslogtreecommitdiff
path: root/com32/lua
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@linux.intel.com>2011-04-12 14:44:32 +0100
committerMatt Fleming <matt.fleming@linux.intel.com>2011-04-16 11:06:23 +0100
commit5b726ddd81fd77947e126b14c84fb843b63544c5 (patch)
tree3f1749150decdda06bc12b8762bd276c3d53a96a /com32/lua
parent2696c5ec6cc013667ba565aaf5e765215c5a3de6 (diff)
downloadsyslinux-5b726ddd81fd77947e126b14c84fb843b63544c5.tar.gz
lua: Delete superfluous $(LIBS) prerequisite
com32.mk already includes the necessary library in $(C_LIBS), we don't need to list them again in $(LIBS). Signed-off-by: Matt Fleming <matt.fleming@linux.intel.com>
Diffstat (limited to 'com32/lua')
-rw-r--r--com32/lua/src/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/com32/lua/src/Makefile b/com32/lua/src/Makefile
index 04ea255e..14b0e33d 100644
--- a/com32/lua/src/Makefile
+++ b/com32/lua/src/Makefile
@@ -19,7 +19,6 @@ topdir = ../../..
MAKEDIR = $(topdir)/mk
include $(MAKEDIR)/com32.mk
-LIBS = ../../lib/libcom32.a $(LIBGCC)
LNXLIBS =
# Temporarily allow warnings not being treated as errors
@@ -55,7 +54,7 @@ $(LIBLUA) : $(LIBLUA_OBJS)
$(AR) cq $@ $^
$(RANLIB) $@
-lua.elf : $(OBJS) $(LIBLUA) $(LIBS) $(C_LIBS)
+lua.elf : $(OBJS) $(LIBLUA) $(C_LIBS)
$(LD) $(LDFLAGS) -o $@ $^
tidy dist: