git: 53c0fd84096c - stable/13 - ossl(4): Install the man page also for arm64
Gordon Bergling
gbe at FreeBSD.org
Sat Apr 17 05:55:44 UTC 2021
The branch stable/13 has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=53c0fd84096c770383e41964c066f1c4fe851064
commit 53c0fd84096c770383e41964c066f1c4fe851064
Author: Gordon Bergling <gbe at FreeBSD.org>
AuthorDate: 2021-04-14 16:32:56 +0000
Commit: Gordon Bergling <gbe at FreeBSD.org>
CommitDate: 2021-04-17 05:55:29 +0000
ossl(4): Install the man page also for arm64
In 22bd0c9731d7 ossl(4) was ported to arm64. The manual page was
adapted, but never installed since the ossl(4) manual page was
i386 / amd64 only.
Reviewed by: mhorne
Differential Revision: https://reviews.freebsd.org/D29762
(cherry picked from commit b1ab802ce4908b6af93e3a3b4328377003735357)
---
share/man/man4/Makefile | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/share/man/man4/Makefile b/share/man/man4/Makefile
index f3896d6516be..1e5df4bb2eec 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -838,7 +838,6 @@ _ntb_transport.4=ntb_transport.4
_nvd.4= nvd.4
_nvme.4= nvme.4
_nvram.4= nvram.4
-_ossl.4= ossl.4
_padlock.4= padlock.4
_pchtherm.4= pchtherm.4
_qat.4= qat.4
@@ -892,6 +891,11 @@ _nvd.4= nvd.4
_nvme.4= nvme.4
.endif
+.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386" || \
+ ${MACHINE_CPUARCH} == "aarch64"
+_ossl.4= ossl.4
+.endif
+
.if ${MACHINE_CPUARCH} == "arm" || ${MACHINE_CPUARCH} == "aarch64" || \
${MACHINE_CPUARCH} == "riscv"
_cgem.4= cgem.4
More information about the dev-commits-src-branches
mailing list