From: Michael Tremer Date: Fri, 2 May 2025 10:16:29 +0000 (+0000) Subject: pam: Fix build with GCC 15 on aarch64 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a0d9793526b13820b56779d22b5b245b8f467d34;p=ipfire-2.x.git pam: Fix build with GCC 15 on aarch64 Signed-off-by: Michael Tremer --- diff --git a/lfs/pam b/lfs/pam index 8f3d144f8..b2847d0a6 100644 --- a/lfs/pam +++ b/lfs/pam @@ -32,6 +32,11 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) +# Don't fail on any linker warnings +# I don't actually know why this has suddenly come up as it is a linker issue, +# however, this all started with the update to GCC 15 and happens on aarch64. +CFLAGS += -Wl,--no-fatal-warnings + ############################################################################### # Top-level Rules ###############################################################################