diff options
| author | Jose Luis Duran <jlduran@FreeBSD.org> | 2025-10-06 12:54:05 +0000 |
|---|---|---|
| committer | Jose Luis Duran <jlduran@FreeBSD.org> | 2025-10-06 12:54:05 +0000 |
| commit | 75f7e003b79d4a1d1cad77cc7bbe2ccb96435cd5 (patch) | |
| tree | f41ccfda93b886a652aa465d6d526df7bbd7add7 | |
| parent | 893c3b857e6059f25865fefab93b323c8e345877 (diff) | |
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
| -rw-r--r-- | ObsoleteFiles.inc | 3 | ||||
| -rw-r--r-- | lib/nss_tacplus/Makefile | 2 |
2 files changed, 4 insertions, 1 deletions
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> |
