Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 28 Sep 2018 17:01:43 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r339000 - head/sbin/init/rc.d
Message-ID:  <201809281701.w8SH1hE3065440@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Fri Sep 28 17:01:43 2018
New Revision: 339000
URL: https://svnweb.freebsd.org/changeset/base/339000

Log:
  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

Modified:
  head/sbin/init/rc.d/ldconfig

Modified: head/sbin/init/rc.d/ldconfig
==============================================================================
--- head/sbin/init/rc.d/ldconfig	Fri Sep 28 14:11:38 2018	(r338999)
+++ head/sbin/init/rc.d/ldconfig	Fri Sep 28 17:01:43 2018	(r339000)
@@ -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`



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809281701.w8SH1hE3065440>