diff options
author | peter <peter@FreeBSD.org> | 2013-06-19 02:16:04 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2013-06-19 02:16:04 +0000 |
commit | deb0fb926fa3f216754efe07a3a169070dc31470 (patch) | |
tree | 19644c78cdd2535391283614571f196cbf2820d9 /usr.bin/Makefile | |
parent | b7a85ee10e5901b5f12ff5bd149279b6c0400a05 (diff) | |
download | FreeBSD-src-deb0fb926fa3f216754efe07a3a169070dc31470.zip FreeBSD-src-deb0fb926fa3f216754efe07a3a169070dc31470.tar.gz |
Bandaid: mips doesn't seem to have the full set of atomics builtins. I
will investigate more.
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index f0fa19b..53a60dc 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -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> |