Date: Sat, 1 Nov 2025 13:40:16 GMT From: Lexi Winter <ivy@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: a1806e6ff37a - main - static_libpam: Don't install pam.d.5 twice Message-ID: <202511011340.5A1DeG9h062940@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by ivy: URL: https://cgit.FreeBSD.org/src/commit/?id=a1806e6ff37a606277ab9657b951e918164e9f63 commit a1806e6ff37a606277ab9657b951e918164e9f63 Author: Lexi Winter <ivy@FreeBSD.org> AuthorDate: 2025-11-01 13:38:26 +0000 Commit: Lexi Winter <ivy@FreeBSD.org> CommitDate: 2025-11-01 13:38:26 +0000 static_libpam: Don't install pam.d.5 twice static_libpam's Makefile includes libpam's Makefile after setting some variables (like MAN) to empty to avoid installing the manpages twice. After commit 031e711647c3, it neglected to do this for MANNODEVLINKS, causing pam.d.5.gz to be installed twice. This is harmless for installworld, but breaks some things that rely on METALOG (NO_ROOT installs) since it causes two METALOG entries to be generated for the same file. Fixes: 031e711647c3 ("packages: Install development manpages in the -dev package") MFC after: 3 days PR: 290708 Reported by: emaste Reviewed by: emaste Sponsored by: https://www.patreon.com/bsdivy Differential Revision: https://reviews.freebsd.org/D53512 --- lib/libpam/static_libpam/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/libpam/static_libpam/Makefile b/lib/libpam/static_libpam/Makefile index 8830f09ef0da..703e6a4a2f00 100644 --- a/lib/libpam/static_libpam/Makefile +++ b/lib/libpam/static_libpam/Makefile @@ -45,6 +45,7 @@ MAN= MANNODEV= INCS= MLINKS= +MANNODEVLINKS= MK_TESTS= no #home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202511011340.5A1DeG9h062940>
