Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Aug 2013 17:44:19 +0000 (UTC)
From:      Andrew Turner <andrew@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r254539 - head/usr.bin
Message-ID:  <201308191744.r7JHiJ00063824@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308191744.r7JHiJ00063824>