The branch main has been updated by jlduran:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=75f7e003b79d4a1d1cad77cc7bbe2ccb96435cd5

commit 75f7e003b79d4a1d1cad77cc7bbe2ccb96435cd5
Author:     Jose Luis Duran <[email protected]>
AuthorDate: 2025-10-06 12:54:05 +0000
Commit:     Jose Luis Duran <[email protected]>
CommitDate: 2025-10-06 12:54:05 +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
---
 ObsoleteFiles.inc        | 3 +++
 lib/nss_tacplus/Makefile | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/ObsoleteFiles.inc b/ObsoleteFiles.inc
index 36e8c048661e..3645cff43458 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
+
 # 20251003: kgdb python scripts moved
 OLD_FILES+=usr/libexec/kgdb/acttrace.py
 OLD_DIRS+=usr/libexec/kgdb
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>

Reply via email to