From 3ba927fdc46de1fe3086c088b9be69557ec5ce27 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Wed, 29 Mar 2023 10:20:03 -0700 Subject: [PATCH] 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 02693b844e6..5dd25ced0cd 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`