summaryrefslogtreecommitdiffstats
path: root/sys/modules/sound
diff options
context:
space:
mode:
authorhselasky <hselasky@FreeBSD.org>2014-05-09 14:35:07 +0000
committerhselasky <hselasky@FreeBSD.org>2014-05-09 14:35:07 +0000
commit2e7d0d86e4cfb789b56eb16cc27063f5e551dfc9 (patch)
tree5385bb7c38997910d1fc8510f7d3ade24d2bc916 /sys/modules/sound
parent643110062f0d8561734116b17e232b854c3ece06 (diff)
downloadFreeBSD-src-2e7d0d86e4cfb789b56eb16cc27063f5e551dfc9.zip
FreeBSD-src-2e7d0d86e4cfb789b56eb16cc27063f5e551dfc9.tar.gz
Invert platform check.
Suggested by: imp @ MFC after: 2 weeks
Diffstat (limited to 'sys/modules/sound')
-rw-r--r--sys/modules/sound/sound/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/sound/sound/Makefile b/sys/modules/sound/sound/Makefile
index cf0b530..0db294b 100644
--- a/sys/modules/sound/sound/Makefile
+++ b/sys/modules/sound/sound/Makefile
@@ -44,8 +44,8 @@ CLEANFILES+= feeder_eq_gen.h feeder_rate_gen.h snd_fxdiv_gen.h
EXPORT_SYMS= YES # XXX evaluate
-.if ${MACHINE_CPUARCH} == "sparc64" || ${MACHINE_CPUARCH} == "powerpc" || \
- ${MACHINE_CPUARCH} == "arm" || ${MACHINE_CPUARCH} == "mips"
+.if ${MACHINE_CPUARCH} != "i386" && ${MACHINE_CPUARCH} != "amd64" && \
+ ${MACHINE_CPUARCH} != "ia64" && ${MACHINE_CPUARCH} != "pc98"
# Create an empty opt_isa.h in order to keep kmod.mk from linking in an
# existing one from KERNBUILDDIR which possibly has DEV_ISA defined so
# sound.ko is always built without isadma support.
OpenPOWER on IntegriCloud