summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBrad Smith <brad@cvs.openbsd.org>2000-10-12 00:55:22 +0000
committerBrad Smith <brad@cvs.openbsd.org>2000-10-12 00:55:22 +0000
commit4dfa6888508882cf893eceb037a69af73178803f (patch)
tree8ad5e1552e4b4bc7ce032fdcc2764d1841b28187 /lib
parentdc8ecad289fb680f60e63a3fb49fa1bb76056e9c (diff)
refix breakage in previous commit, d@ forgot to remove his change while
testing libpthread on sparc (which is not built by default ... yet).
Diffstat (limited to 'lib')
-rw-r--r--lib/libc_r/TEST/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc_r/TEST/Makefile b/lib/libc_r/TEST/Makefile
index 0fe59a01137..c0f3504b1cc 100644
--- a/lib/libc_r/TEST/Makefile
+++ b/lib/libc_r/TEST/Makefile
@@ -1,10 +1,10 @@
-# $OpenBSD: Makefile,v 1.21 2000/10/04 05:50:58 d Exp $
+# $OpenBSD: Makefile,v 1.22 2000/10/12 00:55:21 brad Exp $
# Copyright (c) 1993 Chris Provenzano, proven@athena.mit.edu
LIBC_R?= /usr/lib/libc_r.a
LIBPTHREAD?= /usr/lib/libpthread.a
-.if ${MACHINE_ARCH} == "sparc"
+.if 1 # ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "sparc"
PTHREAD= -lpthread
DPADD += ${LIBPTHREAD}
.else