svn commit: r317077 - head/etc/rc.d

Justin Hibbits jhibbits at FreeBSD.org
Tue Apr 18 03:40:38 UTC 2017


Author: jhibbits
Date: Tue Apr 18 03:40:36 2017
New Revision: 317077
URL: https://svnweb.freebsd.org/changeset/base/317077

Log:
  Add 32-bit caching to ldconfig script for powerpc64
  
  Reported by:	ian@

Modified:
  head/etc/rc.d/ldconfig

Modified: head/etc/rc.d/ldconfig
==============================================================================
--- head/etc/rc.d/ldconfig	Mon Apr 17 23:57:42 2017	(r317076)
+++ head/etc/rc.d/ldconfig	Tue Apr 18 03:40:36 2017	(r317077)
@@ -41,7 +41,7 @@ ldconfig_start()
 		${ldconfig} -elf ${_ins} ${_LDC}
 
 		case `sysctl -n hw.machine_arch` in
-		amd64)
+		amd64|powerpc64)
 			for i in ${ldconfig_local32_dirs}; do
 				if [ -d "${i}" ]; then
 					_files=`find ${i} -type f`


More information about the svn-src-head mailing list