diff options
author | 2018-07-10 03:07:15 +0000 | |
---|---|---|
committer | 2018-07-10 03:07:15 +0000 | |
commit | d61b1236daaeb01bb461ce5f34ce8545d1be104a (patch) | |
tree | 5c9adf719f26fb90125f00059b8faf059c3171ff | |
parent | move the verbose checksum info back after the colon. (diff) | |
download | wireguard-openbsd-d61b1236daaeb01bb461ce5f34ce8545d1be104a.tar.xz wireguard-openbsd-d61b1236daaeb01bb461ce5f34ce8545d1be104a.zip |
build pcidump on armv7
-rw-r--r-- | usr.sbin/pcidump/Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/usr.sbin/pcidump/Makefile b/usr.sbin/pcidump/Makefile index 5911c2825ce..c5ab5648c7a 100644 --- a/usr.sbin/pcidump/Makefile +++ b/usr.sbin/pcidump/Makefile @@ -1,11 +1,12 @@ -# $OpenBSD: Makefile,v 1.9 2017/02/26 04:06:38 jsg Exp $ +# $OpenBSD: Makefile,v 1.10 2018/07/10 03:07:15 jsg Exp $ .if ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \ - ${MACHINE} == "arm64" || ${MACHINE} == "hppa" || \ - ${MACHINE} == "i386" || ${MACHINE} == "landisk" || \ - ${MACHINE} == "loongson" || ${MACHINE} == "macppc" || \ - ${MACHINE} == "octeon" || ${MACHINE} == "sgi" || \ - ${MACHINE} == "socppc" || ${MACHINE} == "sparc64" + ${MACHINE} == "arm64" || ${MACHINE} == "armv7" || \ + ${MACHINE} == "hppa" || ${MACHINE} == "i386" || \ + ${MACHINE} == "landisk" || ${MACHINE} == "loongson" || \ + ${MACHINE} == "macppc" || ${MACHINE} == "octeon" || \ + ${MACHINE} == "sgi" || ${MACHINE} == "socppc" || \ + ${MACHINE} == "sparc64" PROG= pcidump |