From 25b4f9ad69e65a688f77df35062c81ac65a71f8d Mon Sep 17 00:00:00 2001 From: Scott Long Date: Sun, 9 Dec 2018 06:52:25 +0000 Subject: [PATCH] I missed powerpcspe in the previous commit for excluding mps and mpr. I also learned that 'mips' is overly broad and covers 64bit architectures too. However, it's not worth the fight right now, so any refinements will have to come another day. --- sys/modules/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/modules/Makefile b/sys/modules/Makefile index bd0c673e98e..48f9a6e678e 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -524,7 +524,8 @@ _cxgbe= cxgbe .endif # These rely on 64bit atomics -.if ${MACHINE_ARCH} != "powerpc" && ${MACHINE_CPUARCH} != "mips" +.if ${MACHINE_ARCH} != "powerpc" && ${MACHINE_ARCH} != "powerpcspc" && \ + ${MACHINE_CPUARCH} != "mips" _mps= mps _mpr= mpr .endif -- 2.45.0