From fe35316fed8ea8558e190ba14664fdc612f47f3a Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Fri, 28 Sep 2018 17:01:43 +0000 Subject: [PATCH] Run 32-bit compat ldconfig on mips64. mips64 supports COMPAT_FREEBSD32 (for o32 binaries), so run the 32-bit compat ldconfig on it as well. Reported by: brooks Reviewed by: brooks, kib Approved by: re (gjb) Differential Revision: https://reviews.freebsd.org/D17342 --- sbin/init/rc.d/ldconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/init/rc.d/ldconfig b/sbin/init/rc.d/ldconfig index 2d2bd143de73..9e5e02ab29d5 100755 --- a/sbin/init/rc.d/ldconfig +++ b/sbin/init/rc.d/ldconfig @@ -41,7 +41,7 @@ ldconfig_start() ${ldconfig} -elf ${_ins} ${_LDC} case `sysctl -n hw.machine_arch` in - amd64|powerpc64) + amd64|mips64|powerpc64) for i in ${ldconfig_local32_dirs}; do if [ -d "${i}" ]; then _files=`find ${i} -type f`