diff options
author | Etienne Dechamps <[email protected]> | 2012-09-02 22:09:01 +0200 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2012-09-02 15:36:09 -0700 |
commit | ba7dbeb22e4b0f2d4c2b805abfee8d663e0f779d (patch) | |
tree | 0c3b62c67f876acba4af92b96650e39a935f76e6 /cmd/mount_zfs | |
parent | b79fc3fea9e9f26e0e65665243d569d8907ac279 (diff) |
Add libnvpair to mount_zfs dependencies
Commit e6f290535c2fff8b940c4eacb1c90cbc2cfc7508 added libzpool to
the mount_zfs dependencies. This brought in the nvpair symbols
which are used by libzpool. To resolve this include the libnvpair
library for mount_zfs even though mount_zfs doesn't directly
require any of these symbols.
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #926
Diffstat (limited to 'cmd/mount_zfs')
-rw-r--r-- | cmd/mount_zfs/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/mount_zfs/Makefile.am b/cmd/mount_zfs/Makefile.am index 9741c564c..7abcc30c1 100644 --- a/cmd/mount_zfs/Makefile.am +++ b/cmd/mount_zfs/Makefile.am @@ -15,6 +15,7 @@ mount_zfs_SOURCES = \ $(top_srcdir)/cmd/mount_zfs/mount_zfs.c mount_zfs_LDADD = \ + $(top_builddir)/lib/libnvpair/libnvpair.la \ $(top_builddir)/lib/libuutil/libuutil.la \ $(top_builddir)/lib/libzpool/libzpool.la \ $(top_builddir)/lib/libzfs/libzfs.la |