aboutsummaryrefslogtreecommitdiff
path: root/sbin/newfs_msdos/Makefile
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 /sbin/newfs_msdos/Makefile
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 'sbin/newfs_msdos/Makefile')
-rw-r--r--sbin/newfs_msdos/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/newfs_msdos/Makefile b/sbin/newfs_msdos/Makefile
index 558f673edea4..0a9ffb4340a1 100644
--- a/sbin/newfs_msdos/Makefile
+++ b/sbin/newfs_msdos/Makefile
@@ -3,7 +3,8 @@
PROG= newfs_msdos
MAN= newfs_msdos.8
-.if ${MACHINE_ARCH} == "arm"
+# XXX - this is verboten
+.if ${MACHINE_CPUARCH} == "arm"
WARNS?= 3
.endif