diff options
author | 2007-04-21 16:31:53 +0000 | |
---|---|---|
committer | 2007-04-21 16:31:53 +0000 | |
commit | cbad7bffa8a381719f7807ad1fcaf9759a807ccc (patch) | |
tree | 1ae29c5dccd8afdbcd5ae8eeb3d85c1238f85d44 /sys/dev/microcode | |
parent | developers keep killing ramdisk drivers (diff) | |
download | wireguard-openbsd-cbad7bffa8a381719f7807ad1fcaf9759a807ccc.tar.xz wireguard-openbsd-cbad7bffa8a381719f7807ad1fcaf9759a807ccc.zip |
correct list of architectures
ok deraadt@
Diffstat (limited to 'sys/dev/microcode')
-rw-r--r-- | sys/dev/microcode/bnx/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sys/dev/microcode/bnx/Makefile b/sys/dev/microcode/bnx/Makefile index 22fd193efca..1daccd57973 100644 --- a/sys/dev/microcode/bnx/Makefile +++ b/sys/dev/microcode/bnx/Makefile @@ -1,15 +1,14 @@ -# $OpenBSD: Makefile,v 1.2 2007/04/05 23:41:20 drahn Exp $ +# $OpenBSD: Makefile,v 1.3 2007/04/21 16:31:53 reyk Exp $ NOPROG= NOMAN= CC=${HOSTCC} # PCI capable systems only -.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") || \ - (${MACHINE} == "alpha") || (${MACHINE} == "sparc64") || \ - (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "cats") || \ - (${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \ - (${MACHINE} == "sgi") +.if (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "alpha") || \ + (${MACHINE} == "amd64") || (${MACHINE} == "hppa") || \ + (${MACHINE} == "hppa64") || (${MACHINE} == "i386") || \ + (${MACHINE} == "sgi") || (${MACHINE} == "sparc64") FIRM= bnx |