diff options
-rw-r--r-- | sys/dev/microcode/ral/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/microcode/ral/Makefile b/sys/dev/microcode/ral/Makefile index ca19d48d140..59c9f9d5de4 100644 --- a/sys/dev/microcode/ral/Makefile +++ b/sys/dev/microcode/ral/Makefile @@ -1,15 +1,15 @@ -# $OpenBSD: Makefile,v 1.7 2008/03/06 09:11:57 deraadt Exp $ +# $OpenBSD: Makefile,v 1.8 2010/02/09 19:24:33 miod Exp $ NOPROG= NOMAN= CC=${HOSTCC} # PCI capable systems only -.if (${MACHINE_ARCH} == "powerpc") || (${MACHINE} == "alpha") || \ - (${MACHINE} == "amd64") || (${MACHINE} == "armish") || \ - (${MACHINE} == "hppa") || (${MACHINE} == "hppa64") || \ - (${MACHINE} == "i386") || (${MACHINE} == "sgi") || \ - (${MACHINE} == "sparc64") +.if (${MACHINE} == "alpha" || ${MACHINE} == "amd64" || \ + ${MACHINE} == "armish" || ${MACHINE} == "hppa" || \ + ${MACHINE} == "hppa64" || ${MACHINE} == "i386" || \ + ${MACHINE} == "loongson" || ${MACHINE_ARCH} == "powerpc" || \ + ${MACHINE} == "sgi" || ${MACHINE} == "sparc64") FIRM= ral-rt2561 ral-rt2561s ral-rt2661 ral-rt2860 |