svn commit: r252014 - head/usr.bin

Peter Wemm peter at FreeBSD.org
Thu Jun 20 02:26:33 UTC 2013


Author: peter
Date: Thu Jun 20 02:26:32 2013
New Revision: 252014
URL: http://svnweb.freebsd.org/changeset/base/252014

Log:
  Only enable svn on amd64/ia64/sparc64/i386.

Modified:
  head/usr.bin/Makefile

Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile	Thu Jun 20 02:04:03 2013	(r252013)
+++ head/usr.bin/Makefile	Thu Jun 20 02:26:32 2013	(r252014)
@@ -366,7 +366,7 @@ SUBDIR+=	users
 SUBDIR+=	who
 .endif
 
-.if ${MACHINE_ARCH} != "mips"	# mips is broken with pthread
+.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "i386"
 .if ${MK_SVN} == "yes" || ${MK_SVNLITE} == "yes"
 SUBDIR+=	svn
 .endif


More information about the svn-src-all mailing list