diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-11-22 09:22:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-11-22 09:22:09 +0000 |
commit | d15afe983332cc652554370f1803488a78744fd1 (patch) | |
tree | aad28ea381cbdb98e4e8810d2ed473cb0ea4bdb0 /sys/dev | |
parent | 75f369777e3a538ce4aa5a0ae5caf93c1cf5d425 (diff) |
missed a few capable machines
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/microcode/symbol/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/microcode/symbol/Makefile b/sys/dev/microcode/symbol/Makefile index 7a2f61a9b39..d7f12ed4f18 100644 --- a/sys/dev/microcode/symbol/Makefile +++ b/sys/dev/microcode/symbol/Makefile @@ -1,11 +1,12 @@ -# $OpenBSD: Makefile,v 1.1 2004/11/22 09:10:11 deraadt Exp $ +# $OpenBSD: Makefile,v 1.2 2004/11/22 09:22:08 deraadt Exp $ NOPROG= NOMAN= # pcmcia capable systems only .if (${MACHINE} == "i386") || (${MACHINE} == "macppc") || \ - (${MACHINE} == "sparc") + (${MACHINE} == "sparc") || (${MACHINE} == "sparc64") || \ + (${MACHINE} == "hppa") afterinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 644 \ |