diff options
author | John Marino <marino@FreeBSD.org> | 2015-03-24 17:09:58 +0000 |
---|---|---|
committer | John Marino <marino@FreeBSD.org> | 2015-03-24 17:09:58 +0000 |
commit | 28ca5b96a23102bc508dd441fedf3cdf3eef313f (patch) | |
tree | 8bff0e951ded629b0a9a867dfad08db840b0458a /misc/posixtestsuite | |
parent | c0b425947d651ac5423ebe86942c88c6a64dc35a (diff) |
Notes
Diffstat (limited to 'misc/posixtestsuite')
-rw-r--r-- | misc/posixtestsuite/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/misc/posixtestsuite/Makefile b/misc/posixtestsuite/Makefile index c2d59145ca23..1a15a57ffbb5 100644 --- a/misc/posixtestsuite/Makefile +++ b/misc/posixtestsuite/Makefile @@ -31,9 +31,9 @@ THEPIPE= | tee 2>&1 .endif .if defined(WITH_THRLIB) -THRLIB=${WITH_THRLIB} +THRLIB= ${WITH_THRLIB} .else -THRLIB= ${PTHREAD_LIBS} +THRLIB= -lpthread .endif pre-everything:: @@ -48,7 +48,7 @@ pre-everything:: @${ECHO} "" @${ECHO} " * QUIET - don't print progress messages while running" @${ECHO} " * WITH_THRLIB - choose thread library to run test against" - @${ECHO} " (NB: by default '"${PTHREAD_LIBS}"' is used)" + @${ECHO} " (NB: by default '"-lpthread"' is used)" @${ECHO} "" @${ECHO} "Examples:" @${ECHO} "" |