svn commit: r254539 - head/usr.bin

Andrew Turner andrew at FreeBSD.org
Mon Aug 19 17:44:20 UTC 2013


Author: andrew
Date: Mon Aug 19 17:44:19 2013
New Revision: 254539
URL: http://svnweb.freebsd.org/changeset/base/254539

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

Modified:
  head/usr.bin/Makefile

Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile	Mon Aug 19 17:09:14 2013	(r254538)
+++ head/usr.bin/Makefile	Mon Aug 19 17:44:19 2013	(r254539)
@@ -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


More information about the svn-src-head mailing list