From: Christian Marangi Date: Sun, 22 Jan 2023 00:35:16 +0000 (+0100) Subject: tools/mkimage: build uboot with NO_SDL=1 X-Git-Tag: v22.03.4~82 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fpull%2F11849%2Fhead;p=thirdparty%2Fopenwrt.git 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 --- diff --git a/tools/mkimage/Makefile b/tools/mkimage/Makefile index fd5dad0cd83..5473be7a91d 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