diff options
author | 2020-05-28 20:38:21 +0000 | |
---|---|---|
committer | 2020-05-28 20:38:21 +0000 | |
commit | 692b40d2e3dd29855cadb6dbe63a3f844b97b0ba (patch) | |
tree | e8013e0404bcd2be4c10ca8945a0b24f90049dae | |
parent | Enable building wsfontload on arm64 and armv7. (diff) | |
download | wireguard-openbsd-692b40d2e3dd29855cadb6dbe63a3f844b97b0ba.tar.xz wireguard-openbsd-692b40d2e3dd29855cadb6dbe63a3f844b97b0ba.zip |
Enable building wsmoused on arm64 and armv7.
OK deraadt@, kettenis@
-rw-r--r-- | usr.sbin/wsmoused/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/wsmoused/Makefile b/usr.sbin/wsmoused/Makefile index 9b0cc880a64..c71a2efe6e1 100644 --- a/usr.sbin/wsmoused/Makefile +++ b/usr.sbin/wsmoused/Makefile @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile,v 1.7 2014/07/16 20:07:03 okan Exp $ +# $OpenBSD: Makefile,v 1.8 2020/05/28 20:38:21 fcambus Exp $ -.if ${MACHINE} == "i386" || ${MACHINE} == "amd64" ||\ +.if ${MACHINE} == "i386" || ${MACHINE} == "amd64" || \ + ${MACHINE} == "arm64" || ${MACHINE} == "armv7" || \ ${MACHINE} == "alpha" PROG= wsmoused @@ -13,6 +14,5 @@ NOPROG=yes .endif MAN= wsmoused.8 -MANSUBDIR= i386 amd64 alpha .include <bsd.prog.mk> |