Skip to content

Commit

Permalink
Fix mount_zfs dependency on libzpool.
Browse files Browse the repository at this point in the history
mount_zfs depends on libzpool for zfs_prop_written since
330d06f. Unfortunately, the Makefile
for mount_zfs has not been modified to reflect this. As a result,
libtool doesn't know about the dependency, which may result in the wrong
libzpool being used during the build (e.g. the libzpool from the system
instead of the libzpool from the build directory).

This patch adds the dependency to fix the issue.

Signed-off-by: Brian Behlendorf <[email protected]>
Fixes #909.
  • Loading branch information
dechamps authored and behlendorf committed Aug 30, 2012
1 parent b8d06fc commit e6f2905
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cmd/mount_zfs/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ mount_zfs_SOURCES = \

mount_zfs_LDADD = \
$(top_builddir)/lib/libuutil/libuutil.la \
$(top_builddir)/lib/libzpool/libzpool.la \
$(top_builddir)/lib/libzfs/libzfs.la

mount_zfs_LDFLAGS = \
Expand Down

0 comments on commit e6f2905

Please sign in to comment.