Date: Tue, 27 Aug 2024 21:26:38 GMT From: John Baldwin <jhb@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 7b9327d6b2df - stable/14 - defaults/rc.conf: Remove /usr/lib32 from ldconfig32_paths Message-ID: <202408272126.47RLQc4H034430@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by jhb: URL: https://cgit.FreeBSD.org/src/commit/?id=7b9327d6b2df22004d64406e51a9568e4245fb93 commit 7b9327d6b2df22004d64406e51a9568e4245fb93 Author: John Baldwin <jhb@FreeBSD.org> AuthorDate: 2024-04-12 21:35:23 +0000 Commit: John Baldwin <jhb@FreeBSD.org> CommitDate: 2024-08-27 18:15:55 +0000 defaults/rc.conf: Remove /usr/lib32 from ldconfig32_paths Commit 99132daf6f70cb0cc969c555d3612547fa3cf1db prepends /usr/lib32 to the list of paths in ldconfig32_paths since it is a standard library path in ld-elf32.so.1. Remove /usr/lib32 from the value in rc.conf so that it is not listed twice. Reviewed by: olce, kib Sponsored by: University of Cambridge, Google, Inc. Differential Revision: https://reviews.freebsd.org/D44752 (cherry picked from commit 4bf5db113f760619bf754c22864b1d7e2acdeabd) --- libexec/rc/rc.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/rc/rc.conf b/libexec/rc/rc.conf index 8b56a490b5ec..eb971a76ecf2 100644 --- a/libexec/rc/rc.conf +++ b/libexec/rc/rc.conf @@ -675,7 +675,7 @@ clear_tmp_X="YES" # Clear and recreate X11-related directories in /tmp ldconfig_insecure="NO" # Set to YES to disable ldconfig security checks ldconfig_paths="/usr/lib/compat ${_localbase}/lib ${_localbase}/lib/compat/pkg" # shared library search paths -ldconfig32_paths="/usr/lib32 /usr/lib32/compat" +ldconfig32_paths="/usr/lib32/compat" # 32-bit compatibility shared library search paths ldconfig_local_dirs="${_localbase}/libdata/ldconfig" # Local directories with ldconfig configuration files.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202408272126.47RLQc4H034430>