From 146f58ef4b4a87cc92f7d4b93c3aae3e9f4400c1 Mon Sep 17 00:00:00 2001 From: kib Date: Thu, 4 Oct 2018 11:47:53 +0000 Subject: [PATCH] MFC r338964: Remove -m (update) from ldconfig -32 & -soft invocation on startup. --- etc/rc.d/ldconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/rc.d/ldconfig b/etc/rc.d/ldconfig index a657a012fc0..ada378640e0 100755 --- a/etc/rc.d/ldconfig +++ b/etc/rc.d/ldconfig @@ -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 -- 2.45.0