diff options
-rw-r--r-- | lib/libc_r/TEST/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc_r/TEST/Makefile b/lib/libc_r/TEST/Makefile index cbc3c7e2d1c..711ba08d123 100644 --- a/lib/libc_r/TEST/Makefile +++ b/lib/libc_r/TEST/Makefile @@ -13,9 +13,9 @@ LIBC_R?= /usr/lib/libc_r.a CFLAGS += -Wall # -Werror DEBUG = -ggdb CFLAGS += -DSRCDIR='"${.CURDIR}"' -LDLIBS += -pthread -lm ${LDSTATIC} +LDLIBS += -lpthread -lm ${LDSTATIC} DPADD += ${LIBC_R} -MKDEP = -p -pthread +MKDEP = -p -lpthread # This list used to include test_select, but that test doesn't terminate. TESTS = test_create test_pthread_join test_switch test_sleep test_readdir \ @@ -23,7 +23,7 @@ TESTS = test_create test_pthread_join test_switch test_sleep test_readdir \ test_sock_1 test_sock_2 test_stdio_1 test_pthread_mutex \ test_pthread_cond_timedwait test_netdb test_pw test_cwd \ test_sock_2a test_cancel test_sigsuspend test_sigwait \ - test_select test_poll + test_select test_poll test_signal test_stdarg test_close SRCS = ${TESTS:=.c} CLEANFILES += ${TESTS} |