diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-05-19 22:29:11 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2015-05-19 22:29:11 +0000 |
commit | 738dbe7419b7915c9adaed58595d0f108fb3fe11 (patch) | |
tree | 06aa149489b36e2853c4bc6c1a062ec15582229f /cddl/usr.sbin/plockstat | |
parent | 53d5099dfd5a1ed1ed6f0a7449b7840040171100 (diff) | |
download | src-738dbe7419b7915c9adaed58595d0f108fb3fe11.tar.gz src-738dbe7419b7915c9adaed58595d0f108fb3fe11.zip |
Reduce overlinking.
Because of libdtrace there is still a bit a overlinking but nothing we can deal
with easily
Notes
Notes:
svn path=/head/; revision=283134
Diffstat (limited to 'cddl/usr.sbin/plockstat')
-rw-r--r-- | cddl/usr.sbin/plockstat/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cddl/usr.sbin/plockstat/Makefile b/cddl/usr.sbin/plockstat/Makefile index 059295898110..fc10b5679890 100644 --- a/cddl/usr.sbin/plockstat/Makefile +++ b/cddl/usr.sbin/plockstat/Makefile @@ -18,9 +18,6 @@ CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \ -I${.CURDIR}/../../../cddl/lib/libdtrace \ -I${.CURDIR}/../../../sys -DPADD= ${LIBPTHREAD} ${LIBDTRACE} ${LIBY} ${LIBL} ${LIBPROC} ${LIBCTF}\ - ${LIBELF} ${LIBZ} ${LIBRT} ${LIBRTLD_DB} ${LIBUTIL} -LDADD= -lpthread -ldtrace -ly -ll -lproc -lctf -lelf -lz -lrt \ - -lrtld_db -lutil +LIBADD= dtrace proc .include <bsd.prog.mk> |