From ec15f51c6f9677134f0426594c2341eb73472683 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 2 May 2025 10:16:23 +0000 Subject: [PATCH] ipfire-netboot: Fix build with GCC 15 Signed-off-by: Michael Tremer --- lfs/ipfire-netboot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lfs/ipfire-netboot b/lfs/ipfire-netboot index 9e7e3c5ea..c4e75bd81 100644 --- a/lfs/ipfire-netboot +++ b/lfs/ipfire-netboot @@ -78,9 +78,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) # Extract iPXE source cd $(DIR_APP) && tar axf $(DIR_DL)/ipxe-$(PXE_VER).tar.gz cd $(DIR_APP) && rm -rfv ipxe && ln -s ipxe-$(PXE_VER) ipxe - cd $(DIR_APP) && make $(MAKETUNING) bin/ipxe.lkrn + cd $(DIR_APP) && make $(MAKETUNING) bin/ipxe.lkrn CC="gcc -std=gnu99" ifeq "$(BUILD_ARCH)" "x86_64" - cd $(DIR_APP) && make $(MAKETUNING) bin-x86_64-efi/ipxe.efi + cd $(DIR_APP) && make $(MAKETUNING) bin-x86_64-efi/ipxe.efi CC="gcc -std=gnu99" endif # Installation -- 2.39.5