diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2010-02-25 14:42:26 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2010-02-25 14:42:26 +0000 |
commit | 9fd69f37d28cfd7438cac3eeb45fe9dd46b4d7dd (patch) | |
tree | da9a6fd2c1fc08cf833e2f0870883f23013365e8 /tools/regression/gaithrstress | |
parent | a6d8ff1d6de3a48d655a50dd88d484cfa1e5cd77 (diff) |
Fixed missing or broken library dependencies.
Notes
Notes:
svn path=/head/; revision=204311
Diffstat (limited to 'tools/regression/gaithrstress')
-rw-r--r-- | tools/regression/gaithrstress/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/regression/gaithrstress/Makefile b/tools/regression/gaithrstress/Makefile index 2506e017a3bd..f3b8b004fd84 100644 --- a/tools/regression/gaithrstress/Makefile +++ b/tools/regression/gaithrstress/Makefile @@ -1,7 +1,8 @@ # $FreeBSD$ PROG= gaithrstress -LDADD+= -pthread +DPADD= ${LIBPTHREAD} +LDADD= -lpthread NO_MAN= .include <bsd.prog.mk> |