From 52ae0bec718762f244c297d9e36db654b31d295d Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 10 Jul 2020 16:31:50 +0200 Subject: [PATCH] legacy: add missing SDL2_image to Makefile --- legacy/Makefile.include | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/Makefile.include b/legacy/Makefile.include index f1e6ad9a3..f1ebc2501 100644 --- a/legacy/Makefile.include +++ b/legacy/Makefile.include @@ -92,8 +92,8 @@ LDFLAGS += -L$(TOP_DIR)emulator LDLIBS += -ltrezor -lemulator LIBDEPS += $(TOP_DIR)/libtrezor.a $(TOP_DIR)emulator/libemulator.a -CFLAGS += $(shell pkg-config --cflags sdl2) -LDLIBS += $(shell pkg-config --libs sdl2) +CFLAGS += $(shell pkg-config --cflags sdl2 SDL2_image) +LDLIBS += $(shell pkg-config --libs sdl2 SDL2_image) ifdef RANDOM_DEV_FILE CFLAGS += -DRANDOM_DEV_FILE=\"$(RANDOM_DEV_FILE)\"