From 4a90491e5538b18da1a761df4f81493bfe3844b0 Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Mon, 19 Aug 2013 17:44:19 +0000 Subject: [PATCH] Subversion requires atomic functions we only support on arm with clang. --- usr.bin/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 0e7edf2c9d50..a7c72a89f27b 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -366,7 +366,9 @@ SUBDIR+= users SUBDIR+= who .endif -.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "armv6" +.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" || \ + ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "i386" || \ + (${MACHINE_ARCH} == "armv6" && ${COMPILER_TYPE} == "clang") .if ${MK_SVN} == "yes" || ${MK_SVNLITE} == "yes" SUBDIR+= svn .endif