git: b1ab802ce490 - main - ossl(4): Install the man page also for arm64
Gordon Bergling
gbe at FreeBSD.org
Wed Apr 14 16:35:51 UTC 2021
The branch main has been updated by gbe (doc committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=b1ab802ce4908b6af93e3a3b4328377003735357
commit b1ab802ce4908b6af93e3a3b4328377003735357
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-14 16:32:56 +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
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D29762
---
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 026b1c0faf31..f7626c80eeb1 100644
--- a/share/man/man4/Makefile
+++ b/share/man/man4/Makefile
@@ -833,7 +833,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
@@ -887,6 +886,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-main
mailing list