From 3f657048bb05bcd15657f7ab14845fd13a218569 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 2 May 2025 10:16:08 +0000 Subject: [PATCH] fcron: Fix build with GCC 15 Signed-off-by: Michael Tremer --- lfs/fcron | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lfs/fcron b/lfs/fcron index 484deb63d..afcbda1b5 100644 --- a/lfs/fcron +++ b/lfs/fcron @@ -32,6 +32,9 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) +# Fix build with GCC 15 +CFLAGS += -std=gnu17 + ############################################################################### # Top-level Rules ############################################################################### -- 2.39.5