aboutsummaryrefslogtreecommitdiff
path: root/cddl/usr.bin
diff options
context:
space:
mode:
authorAndriy Gapon <avg@FreeBSD.org>2019-11-18 10:34:27 +0000
committerAndriy Gapon <avg@FreeBSD.org>2019-11-18 10:34:27 +0000
commit2d54db4cc9245db85e18b1ad8557d0e305ede65d (patch)
treeee3218de4eb6e4a9e32a0665abcec911b745aa8e /cddl/usr.bin
parentdfe91e5e34bf866fe2231b93b1a910e159d02d64 (diff)
downloadsrc-2d54db4cc9245db85e18b1ad8557d0e305ede65d.tar.gz
src-2d54db4cc9245db85e18b1ad8557d0e305ede65d.zip
fix up r354804, link zstreamdump with libzfs
Since r354804 libzpool depends on libzfs for get_system_hostid symbol. Except for zstreamdump, all binaries linked with libzpool were already linked with libzfs. So, zstreamdump is the only fall-out. It's interesting that on amd64 not only I was able to successfully build zstreamdump, I am able to run it despite having the unresolved symbol in libzpool. MFC after: 4 weeks X-MFC with: r354804
Notes
Notes: svn path=/head/; revision=354806
Diffstat (limited to 'cddl/usr.bin')
-rw-r--r--cddl/usr.bin/zstreamdump/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cddl/usr.bin/zstreamdump/Makefile b/cddl/usr.bin/zstreamdump/Makefile
index 7f759caa74e2..69fd399e14d2 100644
--- a/cddl/usr.bin/zstreamdump/Makefile
+++ b/cddl/usr.bin/zstreamdump/Makefile
@@ -16,7 +16,7 @@ CFLAGS+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common/fs/zfs
CFLAGS+= -I${SRCTOP}/sys/cddl/contrib/opensolaris/uts/common
CFLAGS+= -I${SRCTOP}/cddl/contrib/opensolaris/head
-LIBADD= m nvpair umem zpool pthread z avl
+LIBADD= m nvpair umem zpool zfs pthread z avl
CSTD= c99