diff options
author | 2017-02-26 04:06:38 +0000 | |
---|---|---|
committer | 2017-02-26 04:06:38 +0000 | |
commit | d05bb9e0517b8dbc33cdecb862e1c24377fd7a4a (patch) | |
tree | f0c621d33ac8014e1d0da34dcbdd29b1d8dbdd4a | |
parent | pledge stdio before parsing the http response (diff) | |
download | wireguard-openbsd-d05bb9e0517b8dbc33cdecb862e1c24377fd7a4a.tar.xz wireguard-openbsd-d05bb9e0517b8dbc33cdecb862e1c24377fd7a4a.zip |
build pcidump on arm64
-rw-r--r-- | usr.sbin/pcidump/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/pcidump/Makefile b/usr.sbin/pcidump/Makefile index 75c79dea689..5911c2825ce 100644 --- a/usr.sbin/pcidump/Makefile +++ b/usr.sbin/pcidump/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 1.8 2016/08/10 14:27:18 deraadt Exp $ +# $OpenBSD: Makefile,v 1.9 2017/02/26 04:06:38 jsg Exp $ .if ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \ - ${MACHINE} == "hppa" || ${MACHINE} == "i386" || \ - ${MACHINE} == "landisk" || ${MACHINE} == "loongson" || \ - ${MACHINE} == "macppc" || ${MACHINE} == "octeon" || \ - ${MACHINE} == "sgi" || ${MACHINE} == "socppc" || \ - ${MACHINE} == "sparc64" + ${MACHINE} == "arm64" || ${MACHINE} == "hppa" || \ + ${MACHINE} == "i386" || ${MACHINE} == "landisk" || \ + ${MACHINE} == "loongson" || ${MACHINE} == "macppc" || \ + ${MACHINE} == "octeon" || ${MACHINE} == "sgi" || \ + ${MACHINE} == "socppc" || ${MACHINE} == "sparc64" PROG= pcidump |