diff options
author | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-12-04 03:17:47 +0000 |
---|---|---|
committer | Bryan Drewery <bdrewery@FreeBSD.org> | 2015-12-04 03:17:47 +0000 |
commit | eacae6dc66aa881c102f11e2003174eea7e8af74 (patch) | |
tree | c7b391aae2de6c3508dafaaad65c558a94b98ab7 /tools/regression/gaithrstress | |
parent | 2fd6394d343802517b376e54de75f382eb7307d0 (diff) |
Fix LDADD/DPADD that should be LIBADD.
Sponsored by: EMC / Isilon Storage Division
Notes
Notes:
svn path=/head/; revision=291738
Diffstat (limited to 'tools/regression/gaithrstress')
-rw-r--r-- | tools/regression/gaithrstress/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/regression/gaithrstress/Makefile b/tools/regression/gaithrstress/Makefile index 187c973b34a9..9c5cdd5c215b 100644 --- a/tools/regression/gaithrstress/Makefile +++ b/tools/regression/gaithrstress/Makefile @@ -1,8 +1,7 @@ # $FreeBSD$ PROG= gaithrstress -DPADD= ${LIBPTHREAD} -LDADD= -lpthread +LIBADD= pthread MAN= .include <bsd.prog.mk> |