svn commit: r265780 - head/sys/modules/sound/sound

Hans Petter Selasky hselasky at FreeBSD.org
Fri May 9 14:35:07 UTC 2014


Author: hselasky
Date: Fri May  9 14:35:07 2014
New Revision: 265780
URL: http://svnweb.freebsd.org/changeset/base/265780

Log:
  Invert platform check.
  
  Suggested by:	imp @
  MFC after:	2 weeks

Modified:
  head/sys/modules/sound/sound/Makefile

Modified: head/sys/modules/sound/sound/Makefile
==============================================================================
--- head/sys/modules/sound/sound/Makefile	Fri May  9 14:28:11 2014	(r265779)
+++ head/sys/modules/sound/sound/Makefile	Fri May  9 14:35:07 2014	(r265780)
@@ -44,8 +44,8 @@ CLEANFILES+=	feeder_eq_gen.h feeder_rate
 
 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.


More information about the svn-src-head mailing list