diff options
Diffstat (limited to 'lib/librthread/Makefile')
-rw-r--r-- | lib/librthread/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/librthread/Makefile b/lib/librthread/Makefile index 7d188db71da..c7d96c91ec2 100644 --- a/lib/librthread/Makefile +++ b/lib/librthread/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.50 2018/06/08 13:53:01 pirofti Exp $ +# $OpenBSD: Makefile,v 1.51 2018/09/24 11:25:09 jsg Exp $ LIB=pthread LIBCSRCDIR= ${.CURDIR}/../libc @@ -36,8 +36,8 @@ SRCS= rthread.c \ sched_prio.c # Architectures that implement atomics -.if ${MACHINE_ARCH} == "aarch64" || \ - ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386" || \ +.if ${MACHINE_ARCH} == "aarch64" || ${MACHINE_ARCH} == "amd64" || \ + ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "i386" || \ ${MACHINE_ARCH} == "mips64" || ${MACHINE_ARCH} == "mips64el" || \ ${MACHINE_ARCH} == "sparc64" SRCS+= rthread_sem.c |