Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 4 Oct 2018 11:47:53 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r339180 - stable/11/etc/rc.d
Message-ID:  <201810041147.w94BlrG2081764@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



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