From 19e62d09c2fd3b90f2b81af07f5a342c27470ea8 Mon Sep 17 00:00:00 2001 From: John Audia Date: Tue, 15 Jul 2025 04:11:51 -0400 Subject: [PATCH] libpam: fix build with mold linker Apparently, building with mold linking is not supported. Closes #26996 Build system: x86/64 Build-tested: x86/64-glibc Run-tested: x86/64-glibc Signed-off-by: John Audia --- libs/libpam/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/libpam/Makefile b/libs/libpam/Makefile index e5c33f7d1c..bfa1b8bd6f 100644 --- a/libs/libpam/Makefile +++ b/libs/libpam/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libpam PKG_VERSION:=1.7.1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=Linux-PAM-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://github.com/linux-pam/linux-pam/releases/download/v$(PKG_VERSION) @@ -22,6 +22,7 @@ PKG_LICENSE_FILES:=COPYING Copyright PKG_CPE_ID:=cpe:/a:linux-pam:linux-pam PKG_FIXUP:=autoreconf +PKG_BUILD_FLAGS:=no-mold PKG_INSTALL:=1 PKG_BUILD_PARALLEL:=1 -- 2.30.2