git: 869989671300 - stable/13 - nss_tacplus: Fix typo MK_INSTALLIB -> MK_INSTALLLIB
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 07 Oct 2025 00:34:42 UTC
The branch stable/13 has been updated by jlduran:
URL: https://cgit.FreeBSD.org/src/commit/?id=8699896713006218278a1ccb74738dff92a7e8b8
commit 8699896713006218278a1ccb74738dff92a7e8b8
Author: Jose Luis Duran <jlduran@FreeBSD.org>
AuthorDate: 2025-10-06 12:54:05 +0000
Commit: Jose Luis Duran <jlduran@FreeBSD.org>
CommitDate: 2025-10-07 00:33:32 +0000
nss_tacplus: Fix typo MK_INSTALLIB -> MK_INSTALLLIB
Reviewed by: des
Approved by: emaste (mentor)
Fixes: 6c5cdba1bafe ("Add nss_tacplus, a TACACS+ NSS module.")
MFC after: 1 day
Differential Revision: https://reviews.freebsd.org/D52882
(cherry picked from commit 75f7e003b79d4a1d1cad77cc7bbe2ccb96435cd5)
---
ObsoleteFiles.inc | 3 +++
lib/nss_tacplus/Makefile | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/ObsoleteFiles.inc b/ObsoleteFiles.inc
index 9a47a70a9324..e7d6f4db8515 100644
--- a/ObsoleteFiles.inc
+++ b/ObsoleteFiles.inc
@@ -51,6 +51,9 @@
# xargs -n1 | sort | uniq -d;
# done
+# 20251006: Remove libnss_tacplus.a (it never should have been installed)
+OLD_FILES+=usr/lib/libnss_tacplus.a
+
# 20250812: Remove a bogus manlink
OLD_FILES+=usr/share/man/man3/quota_statfs.3.gz
diff --git a/lib/nss_tacplus/Makefile b/lib/nss_tacplus/Makefile
index a969cd85778d..c85297a7dbaa 100644
--- a/lib/nss_tacplus/Makefile
+++ b/lib/nss_tacplus/Makefile
@@ -3,7 +3,7 @@ SRCS= ${LIB}.c
SHLIB_MAJOR= 1
SHLIB_NAME= ${LIB}.so.${SHLIB_MAJOR}
LIBADD= tacplus
-MK_INSTALLIB= no
+MK_INSTALLLIB= no
MAN= ${LIB}.8
.include <bsd.lib.mk>