aboutsummaryrefslogtreecommitdiff
path: root/cddl/usr.sbin/zdb
diff options
context:
space:
mode:
authorRobert Millan <rmh@FreeBSD.org>2011-10-30 16:29:04 +0000
committerRobert Millan <rmh@FreeBSD.org>2011-10-30 16:29:04 +0000
commit35362067138d9c7cd61aacfb509f540f7267fe43 (patch)
tree7625c03587487086766b59440120487694119ce9 /cddl/usr.sbin/zdb
parentaa7a15b6bb2acf2a1928d5aa06a6e2f00b073aed (diff)
downloadsrc-35362067138d9c7cd61aacfb509f540f7267fe43.tar.gz
src-35362067138d9c7cd61aacfb509f540f7267fe43.zip
Fix a few gratuitous library dependencies. Some of the ZFS utilities
are linked with libraries they don't use: - zinject doesn't use libavl - ztest doesn't use libz - zdb uses neither libavl nor libz - zfs uses neither libbsdxml nor libm, nor libsbuf - zpool uses neither libbsdxml nor libm, nor libsbuf In addition, libzfs needs libm because it uses pow(), however it isn't linked with -lm. This went unnoticed because all its users had -lm before. Reviewed by: pjd, mm Approved by: kib (mentor) MFC after: 1 week
Notes
Notes: svn path=/head/; revision=226940
Diffstat (limited to 'cddl/usr.sbin/zdb')
-rw-r--r--cddl/usr.sbin/zdb/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/cddl/usr.sbin/zdb/Makefile b/cddl/usr.sbin/zdb/Makefile
index 446d1c49b90b..640802878ddf 100644
--- a/cddl/usr.sbin/zdb/Makefile
+++ b/cddl/usr.sbin/zdb/Makefile
@@ -23,9 +23,9 @@ CFLAGS+= -I${.CURDIR}/../../../sys/cddl/contrib/opensolaris/common/zfs
CFLAGS+= -I${.CURDIR}/../../../cddl/contrib/opensolaris/head
CFLAGS+= -I${.CURDIR}/../../lib/libumem
-DPADD= ${LIBAVL} ${LIBGEOM} ${LIBM} ${LIBNVPAIR} ${LIBPTHREAD} ${LIBUMEM} \
- ${LIBUUTIL} ${LIBZ} ${LIBZFS} ${LIBZPOOL}
-LDADD= -lavl -lgeom -lm -lnvpair -lpthread -lumem -luutil -lz -lzfs -lzpool
+DPADD= ${LIBGEOM} ${LIBM} ${LIBNVPAIR} ${LIBPTHREAD} ${LIBUMEM} \
+ ${LIBUUTIL} ${LIBZFS} ${LIBZPOOL}
+LDADD= -lgeom -lm -lnvpair -lpthread -lumem -luutil -lzfs -lzpool
.include <bsd.prog.mk>