From 28e1770a3bd10014b082669e55af32d8de3f67fb Mon Sep 17 00:00:00 2001 From: Christian Marangi Date: Sun, 22 Jan 2023 01:35:16 +0100 Subject: [PATCH] tools/mkimage: build uboot with NO_SDL=1 From uboot Documentation for uboot-2022.01 for tools-only we can build with NO_SDL=1 to skip installing the sdl2 package. Follow this to fix compilation error on macos Signed-off-by: Christian Marangi --- tools/mkimage/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/mkimage/Makefile b/tools/mkimage/Makefile index fd5dad0cd8..5473be7a91 100644 --- a/tools/mkimage/Makefile +++ b/tools/mkimage/Makefile @@ -26,6 +26,7 @@ define Host/Compile HOSTLDFLAGS="$(HOST_LDFLAGS)" \ PKG_CONFIG_EXTRAARGS="--static" \ V=$(if $(findstring c,$(OPENWRT_VERBOSE)),1) \ + NO_SDL=1 \ tools-only_config \ tools-only endef