diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-06-28 15:25:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2020-06-28 15:25:23 +0000 |
commit | f82eff1fc0c703b464502c887036a4207aa13621 (patch) | |
tree | 72ddb2dfb89ab7236c25e0d8da6c9d40d356347d /usr.sbin/pcidump | |
parent | bcd70f65e59d14628bfd8918a23f9e9f1331e875 (diff) |
obviously powerpc64 will want pcidump
Diffstat (limited to 'usr.sbin/pcidump')
-rw-r--r-- | usr.sbin/pcidump/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/pcidump/Makefile b/usr.sbin/pcidump/Makefile index 374d0cd7fc4..93b6d645af0 100644 --- a/usr.sbin/pcidump/Makefile +++ b/usr.sbin/pcidump/Makefile @@ -1,11 +1,12 @@ -# $OpenBSD: Makefile,v 1.11 2019/05/11 07:18:17 deraadt Exp $ +# $OpenBSD: Makefile,v 1.12 2020/06/28 15:25:22 deraadt Exp $ .if ${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \ ${MACHINE} == "arm64" || ${MACHINE} == "armv7" || \ ${MACHINE} == "hppa" || ${MACHINE} == "i386" || \ ${MACHINE} == "landisk" || ${MACHINE} == "loongson" || \ ${MACHINE} == "macppc" || ${MACHINE} == "octeon" || \ - ${MACHINE} == "sgi" || ${MACHINE} == "sparc64" + ${MACHINE} == "sgi" || ${MACHINE} == "sparc64" || + ${MACHINE} == "powerpc64" PROG= pcidump |