svn commit: r251982 - head/usr.bin

Peter Wemm peter at FreeBSD.org
Wed Jun 19 02:16:05 UTC 2013


Author: peter
Date: Wed Jun 19 02:16:04 2013
New Revision: 251982
URL: http://svnweb.freebsd.org/changeset/base/251982

Log:
  Bandaid: mips doesn't seem to have the full set of atomics builtins.  I
  will investigate more.

Modified:
  head/usr.bin/Makefile

Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile	Wed Jun 19 00:24:08 2013	(r251981)
+++ head/usr.bin/Makefile	Wed Jun 19 02:16:04 2013	(r251982)
@@ -366,9 +366,11 @@ SUBDIR+=	users
 SUBDIR+=	who
 .endif
 
+.if ${MACHINE_ARCH} != "mips"	# mips is broken with pthread
 .if ${MK_SVN} == "yes" || ${MK_SVNLITE} == "yes"
 SUBDIR+=	svn
 .endif
+.endif
 
 .include <bsd.arch.inc.mk>
 


More information about the svn-src-head mailing list