mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 18:11:00 +03:00
ba7dbeb22e
Commit e6f290535c
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 <behlendorf1@llnl.gov>
Closes #926
25 lines
663 B
Makefile
25 lines
663 B
Makefile
include $(top_srcdir)/config/Rules.am
|
|
|
|
DEFAULT_INCLUDES += \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/lib/libspl/include
|
|
|
|
#
|
|
# Ignore the prefix for the mount helper. It must be installed in /sbin/
|
|
# because this path is hardcoded in the mount(8) for security reasons.
|
|
#
|
|
sbindir=/sbin
|
|
sbin_PROGRAMS = mount.zfs
|
|
|
|
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
|
|
|
|
mount_zfs_LDFLAGS = \
|
|
-pthread -lm $(ZLIB) -lrt -ldl $(LIBUUID) $(LIBBLKID) $(LIBSELINUX)
|