summaryrefslogtreecommitdiffstats
path: root/usr.sbin/apmd
diff options
context:
space:
mode:
authorphessler <phessler@openbsd.org>2019-01-23 09:59:15 +0000
committerphessler <phessler@openbsd.org>2019-01-23 09:59:15 +0000
commit51eb5c7380fc000df676058e55cf3572db59a676 (patch)
treec5f7814dbda909d4b77b4bd6d1573070a91a10ed /usr.sbin/apmd
parentenable the apm(4) subsystem on arm64 (diff)
downloadwireguard-openbsd-51eb5c7380fc000df676058e55cf3572db59a676.tar.xz
wireguard-openbsd-51eb5c7380fc000df676058e55cf3572db59a676.zip
enable the apm(4) programs on arm64
previous version OK deraadt@ patrick@ OK jsg@
Diffstat (limited to 'usr.sbin/apmd')
-rw-r--r--usr.sbin/apmd/Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/apmd/Makefile b/usr.sbin/apmd/Makefile
index f5aa15cbad6..e9855b87406 100644
--- a/usr.sbin/apmd/Makefile
+++ b/usr.sbin/apmd/Makefile
@@ -1,8 +1,8 @@
-# $OpenBSD: Makefile,v 1.13 2016/09/03 13:37:46 guenther Exp $
+# $OpenBSD: Makefile,v 1.14 2019/01/23 09:59:15 phessler Exp $
-.if (${MACHINE} == "amd64") || (${MACHINE} == "i386") || \
- (${MACHINE} == "loongson") || (${MACHINE} == "macppc") || \
- (${MACHINE} == "sparc64")
+.if ((${MACHINE} == "arm64") || (${MACHINE} == "amd64") || \
+ (${MACHINE} == "i386") || (${MACHINE} == "loongson") || \
+ (${MACHINE} == "macppc") || (${MACHINE} == "sparc64"))
SRCS= apmd.c apmsubr.c
@@ -12,6 +12,6 @@ NOPROG=yes
.endif
MAN= apmd.8
-MANSUBDIR=amd64 i386 loongson macppc sparc64
+MANSUBDIR= arm64 amd64 i386 loongson macppc sparc64
.include <bsd.prog.mk>