git: 6f15b7e19952 - main - ldconfig script: enable 32-bit compat on aarch64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 05 Aug 2023 12:38:18 UTC
The branch main has been updated by karels: URL: https://cgit.FreeBSD.org/src/commit/?id=6f15b7e199527e50aa459340607ff98bbff8e905 commit 6f15b7e199527e50aa459340607ff98bbff8e905 Author: Mike Karels <karels@FreeBSD.org> AuthorDate: 2023-08-05 12:19:01 +0000 Commit: Mike Karels <karels@FreeBSD.org> CommitDate: 2023-08-05 12:37:39 +0000 ldconfig script: enable 32-bit compat on aarch64 Add aarch64 to set of architectures that support 32-bit compat libraries. --- 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 5dd25ced0cd4..2d30ac0e6db3 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|powerpc64) + aarch64|amd64|powerpc64) for i in ${ldconfig_local32_dirs}; do if [ -d "${i}" ]; then _files=`find ${i} -type f`