diff options
author | imp <imp@FreeBSD.org> | 2010-09-13 02:05:42 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2010-09-13 02:05:42 +0000 |
commit | 283d3bcfd2f3cc3179fc52408a83e8d40dffba1c (patch) | |
tree | 57af8dddc128f61fb4e186efbace586cbddef48b /sys | |
parent | 39020fcb35665f1f9bf13df2a556e27e2ccc02a4 (diff) | |
download | FreeBSD-src-283d3bcfd2f3cc3179fc52408a83e8d40dffba1c.zip FreeBSD-src-283d3bcfd2f3cc3179fc52408a83e8d40dffba1c.tar.gz |
MFtbemd: use MACHINE_CPUARCH
Diffstat (limited to 'sys')
-rw-r--r-- | sys/modules/scc/Makefile | 2 | ||||
-rw-r--r-- | sys/modules/sound/sound/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/modules/scc/Makefile b/sys/modules/scc/Makefile index c1678b7..8a40e0b 100644 --- a/sys/modules/scc/Makefile +++ b/sys/modules/scc/Makefile @@ -5,7 +5,7 @@ .if ${MACHINE} == "sparc64" scc_bfe= scc_bfe_ebus.c scc_bfe_sbus.c .endif -.if ${MACHINE_ARCH} == "powerpc" +.if ${MACHINE_CPUARCH} == "powerpc" scc_bfe= scc_bfe_macio.c scc_bfe_quicc.c .endif diff --git a/sys/modules/sound/sound/Makefile b/sys/modules/sound/sound/Makefile index 78f91d4..42cfc24 100644 --- a/sys/modules/sound/sound/Makefile +++ b/sys/modules/sound/sound/Makefile @@ -44,7 +44,7 @@ CLEANFILES+= feeder_eq_gen.h feeder_rate_gen.h snd_fxdiv_gen.h EXPORT_SYMS= YES # XXX evaluate -.if ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "powerpc" +.if ${MACHINE_CPUARCH} == "sparc64" || ${MACHINE_CPUARCH} == "powerpc" # 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. |