diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-14 22:05:48 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-05-14 22:05:48 +0000 |
commit | 4c3d55ce3647f2fdc52c0ffce02b8a5f33ea26c4 (patch) | |
tree | 1dd7a86bb31a6ca96ce224e2c80d3c016e9a6e49 | |
parent | bd27ebd11e2771222a4298a7f3e5107489e8a773 (diff) |
amd64 can handle this too; tleslie@gmail.com
-rw-r--r-- | sys/dev/microcode/cirruslogic/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/microcode/cirruslogic/Makefile b/sys/dev/microcode/cirruslogic/Makefile index c68c2968d3c..0cb81a6ad8d 100644 --- a/sys/dev/microcode/cirruslogic/Makefile +++ b/sys/dev/microcode/cirruslogic/Makefile @@ -1,10 +1,10 @@ -# $OpenBSD: Makefile,v 1.2 2005/06/16 08:23:49 markus Exp $ +# $OpenBSD: Makefile,v 1.3 2006/05/14 22:05:47 deraadt Exp $ NOPROG= NOMAN= # PCI capable systems only -.if (${MACHINE} == "i386") +.if (${MACHINE} == "i386") || (${MACHINE} == "amd64") FIRM= cs4280 |