aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Fleming <matt.fleming@intel.com>2013-01-02 13:32:49 +0000
committerMatt Fleming <matt.fleming@intel.com>2013-01-02 13:32:49 +0000
commit714e64ac377a158960abe85035b275c71325530e (patch)
treebe3e8d80effbccd01dc1857a41ce669cf55562da
parent7c40be9a942b9c1be14617239bc1f184f832f1b6 (diff)
downloadsyslinux-714e64ac377a158960abe85035b275c71325530e.tar.gz
syslinux-714e64ac377a158960abe85035b275c71325530e.tar.xz
syslinux-714e64ac377a158960abe85035b275c71325530e.zip
sys/vesa: Include screencpy.o in $LIBVESA_OBJS
commit 4b0851493dce ("sys/vesa: Modularise common vesa code") accidentally removed screencpy.o from $LIBVESA_OBJS, which results in an undefined reference to __vesacon_copy_to_screen when loading vesamenu.c32. Signed-off-by: Matt Fleming <matt.fleming@intel.com>
-rw-r--r--com32/lib/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/lib/Makefile b/com32/lib/Makefile
index 46a53b5c..95564b9c 100644
--- a/com32/lib/Makefile
+++ b/com32/lib/Makefile
@@ -25,7 +25,7 @@ LIBJPG_OBJS = \
LIBVESA_OBJS = \
sys/vesacon_write.o sys/vesaserial_write.o \
sys/vesa/initvesa.o sys/vesa/drawtxt.o sys/vesa/background.o \
- sys/vesa/alphatbl.o sys/vesa/fmtpixel.o \
+ sys/vesa/alphatbl.o sys/vesa/screencpy.o sys/vesa/fmtpixel.o \
sys/vesa/i915resolution.o
LIBMISC_OBJS = \