From: Michael Tremer Date: Fri, 2 May 2025 10:15:55 +0000 (+0000) Subject: perl: Fix build with GCC 15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fe9bfc1838c0905b94383217299216ccd4b9366e;p=ipfire-2.x.git perl: Fix build with GCC 15 Signed-off-by: Michael Tremer --- diff --git a/lfs/perl b/lfs/perl index 81fc597b0..c6da19ce8 100644 --- a/lfs/perl +++ b/lfs/perl @@ -39,6 +39,9 @@ else TARGET = $(DIR_INFO)/$(THISAPP)-tools endif +# Fix build with GCC 15 +CFLAGS += -std=gnu17 + # Perl does not build with -j larger than 23 MAX_PARALLELISM = 23