aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/kldxref
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2010-08-23 22:24:11 +0000
committerWarner Losh <imp@FreeBSD.org>2010-08-23 22:24:11 +0000
commit25faff346c8453b8248f99c7cff71708262faa37 (patch)
tree3fedc9e4d65d62c819fe8818c625211ebbd8ef26 /usr.sbin/kldxref
parent222447d5e0b0966ae6350312718c2c783c3ce88b (diff)
downloadsrc-25faff346c8453b8248f99c7cff71708262faa37.tar.gz
src-25faff346c8453b8248f99c7cff71708262faa37.zip
MFtbemd:
Prefer MACHNE_CPUARCH to MACHINE_ARCH in most contexts where you want to test of all the CPUs of a given family conform.
Notes
Notes: svn path=/head/; revision=211725
Diffstat (limited to 'usr.sbin/kldxref')
-rw-r--r--usr.sbin/kldxref/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/kldxref/Makefile b/usr.sbin/kldxref/Makefile
index 2f1550583cf7..c877a8a57ffe 100644
--- a/usr.sbin/kldxref/Makefile
+++ b/usr.sbin/kldxref/Makefile
@@ -7,8 +7,8 @@ SRCS= kldxref.c ef.c ef_obj.c
WARNS?= 2
CFLAGS+=-fno-strict-aliasing
-.if exists(ef_${MACHINE_ARCH}.c)
-SRCS+= ef_${MACHINE_ARCH}.c
+.if exists(ef_${MACHINE_CPUARCH}.c)
+SRCS+= ef_${MACHINE_CPUARCH}.c
.else
SRCS+= ef_nop.c
.endif