svn commit: r339180 - stable/11/etc/rc.d

Konstantin Belousov kib at FreeBSD.org
Thu Oct 4 11:47:54 UTC 2018


Author: kib
Date: Thu Oct  4 11:47:53 2018
New Revision: 339180
URL: https://svnweb.freebsd.org/changeset/base/339180

Log:
  MFC r338964:
  Remove -m (update) from ldconfig -32 & -soft invocation on startup.

Modified:
  stable/11/etc/rc.d/ldconfig
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/etc/rc.d/ldconfig
==============================================================================
--- stable/11/etc/rc.d/ldconfig	Thu Oct  4 09:28:40 2018	(r339179)
+++ stable/11/etc/rc.d/ldconfig	Thu Oct  4 11:47:53 2018	(r339180)
@@ -58,7 +58,7 @@ ldconfig_start()
 			done
 			check_startmsgs &&
 			    echo '32-bit compatibility ldconfig path:' ${_LDC}
-			${ldconfig} -32 -m ${_ins} ${_LDC}
+			${ldconfig} -32 ${_ins} ${_LDC}
 			;;
 		esac
 
@@ -80,7 +80,7 @@ ldconfig_start()
 			done
 			check_startmsgs &&
 			    echo 'Soft Float compatibility ldconfig path:' ${_LDC}
-			${ldconfig} -soft -m ${_ins} ${_LDC}
+			${ldconfig} -soft ${_ins} ${_LDC}
 			;;
 		esac
 


More information about the svn-src-stable-11 mailing list