Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Mar 2023 17:32:44 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 3ba927fdc46d - main - rc.d/ldconfig: Remove mips64 check for ldconfig32.
Message-ID:  <202303291732.32THWiH5005777@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by jhb:

URL: https://cgit.FreeBSD.org/src/commit/?id=3ba927fdc46de1fe3086c088b9be69557ec5ce27

commit 3ba927fdc46de1fe3086c088b9be69557ec5ce27
Author:     John Baldwin <jhb@FreeBSD.org>
AuthorDate: 2023-03-29 17:20:03 +0000
Commit:     John Baldwin <jhb@FreeBSD.org>
CommitDate: 2023-03-29 17:20:03 +0000

    rc.d/ldconfig: Remove mips64 check for ldconfig32.
---
 libexec/rc/rc.d/ldconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libexec/rc/rc.d/ldconfig b/libexec/rc/rc.d/ldconfig
index 02693b844e60..5dd25ced0cd4 100755
--- a/libexec/rc/rc.d/ldconfig
+++ b/libexec/rc/rc.d/ldconfig
@@ -43,7 +43,7 @@ ldconfig_start()
 		machine_arch=$(sysctl -n hw.machine_arch)
 
 		case ${machine_arch} in
-		amd64|mips64|powerpc64)
+		amd64|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?202303291732.32THWiH5005777>