From: hingbong lo Date: Thu, 19 Jun 2025 02:32:03 +0000 (+0000) Subject: bash: fix build failed with GCC 15 #26784 X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=9672ccaf5bcbd5460aeb6ef0f344fbc5e5f3e86c;p=openwrt-packages.git bash: fix build failed with GCC 15 #26784 by applying this patch, build successfully Signed-off-by: hingbong lo --- diff --git a/utils/bash/Makefile b/utils/bash/Makefile index 61aca94a4..6afe72cc2 100644 --- a/utils/bash/Makefile +++ b/utils/bash/Makefile @@ -84,6 +84,8 @@ CONFIGURE_ARGS+= \ --enable-job-control \ --enable-readline +TARGET_CFLAGS += -std=gnu17 + define Package/bash/postinst #!/bin/sh grep -q bash "$${IPKG_INSTROOT}/etc/shells" || { @@ -100,3 +102,4 @@ define Package/bash/install endef $(eval $(call BuildPackage,bash)) +