From e9b710181d257bb5fe648cc9d8346fd484dfa251 Mon Sep 17 00:00:00 2001 From: Rosen Penev Date: Wed, 8 Oct 2025 19:05:53 -0700 Subject: [PATCH] lrzsz: fix compilation with gcc15 Add gnu11 to fix compilation. Support for the latest standard takes too much patching. Signed-off-by: Rosen Penev --- utils/lrzsz/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/utils/lrzsz/Makefile b/utils/lrzsz/Makefile index 524e5b525f..ef4fb55159 100644 --- a/utils/lrzsz/Makefile +++ b/utils/lrzsz/Makefile @@ -41,6 +41,8 @@ define Package/lrzsz/description from a variety of programs running under various operating systems. endef +TARGET_CFLAGS += -std=gnu11 + define Package/lrzsz/install $(INSTALL_DIR) $(1)/usr/bin $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/lrz $(1)/usr/bin/ -- 2.30.2