Subversion requires atomic functions we only support on arm with clang.

This commit is contained in:
Andrew Turner 2013-08-19 17:44:19 +00:00
parent bf59b2c504
commit 4a90491e55

View File

@ -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