git: 3ba927fdc46d - main - rc.d/ldconfig: Remove mips64 check for ldconfig32.

From: John Baldwin <jhb_at_FreeBSD.org>
Date: Wed, 29 Mar 2023 17:32:44 UTC
The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=3ba927fdc46de1fe3086c088b9be69557ec5ce27

commit 3ba927fdc46de1fe3086c088b9be69557ec5ce27
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2023-03-29 17:20:03 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2023-03-29 17:20:03 +0000

    rc.d/ldconfig: Remove mips64 check for ldconfig32.
---
 libexec/rc/rc.d/ldconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libexec/rc/rc.d/ldconfig b/libexec/rc/rc.d/ldconfig
index 02693b844e60..5dd25ced0cd4 100755
--- a/libexec/rc/rc.d/ldconfig
+++ b/libexec/rc/rc.d/ldconfig
@@ -43,7 +43,7 @@ ldconfig_start()
 		machine_arch=$(sysctl -n hw.machine_arch)
 
 		case ${machine_arch} in
-		amd64|mips64|powerpc64)
+		amd64|powerpc64)
 			for i in ${ldconfig_local32_dirs}; do
 				if [ -d "${i}" ]; then
 					_files=`find ${i} -type f`