rc.d/ldconfig: Remove mips64 check for ldconfig32.

This commit is contained in:
John Baldwin 2023-03-29 10:20:03 -07:00
parent d4a80d21b3
commit 3ba927fdc4

View file

@ -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`