diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-12-04 03:17:47 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-12-04 03:17:47 +0000 |
commit | bb97a3d43c2b7f2a5b4f05069e3bb12383a9e20d (patch) | |
tree | c7b391aae2de6c3508dafaaad65c558a94b98ab7 /contrib/ofed | |
parent | b4e7db0cc3b11e52de66259e19d2bf84d0bfb9c2 (diff) | |
download | FreeBSD-src-bb97a3d43c2b7f2a5b4f05069e3bb12383a9e20d.zip FreeBSD-src-bb97a3d43c2b7f2a5b4f05069e3bb12383a9e20d.tar.gz |
Fix LDADD/DPADD that should be LIBADD.
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'contrib/ofed')
-rw-r--r-- | contrib/ofed/usr.bin/osmtest/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/ofed/usr.bin/osmtest/Makefile b/contrib/ofed/usr.bin/osmtest/Makefile index fef67a0..038d1db1 100644 --- a/contrib/ofed/usr.bin/osmtest/Makefile +++ b/contrib/ofed/usr.bin/osmtest/Makefile @@ -22,7 +22,8 @@ LDADD= -libcommon \ -losmvendor \ -losmcomp \ -lopensm \ - -lpthread + +LIBADD+= pthread CFLAGS= -DVENDOR_RMPP_SUPPORT -DDUAL_SIDED_RMPP \ -I${OPENSM}/osmtest/include |