Fix circular dependency between libzfs and libzfs_core

libzfs_core is the wrapper around kernel ioctls, the ioctl compat code belongs
to it
This commit is contained in:
Baptiste Daroussin 2015-06-15 10:48:48 +00:00
parent c4af37bb9a
commit 13500839f2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=284409
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,6 @@ SRCS+= libzfs_changelist.c \
zfs_comutil.c \
zfs_deleg.c \
zfs_fletcher.c \
zfs_ioctl_compat.c \
zfs_namecheck.c \
zfs_prop.c \
zpool_prop.c \

View File

@ -11,7 +11,8 @@ DPADD= ${LIBNVPAIR}
LDADD= -lnvpair
SRCS= libzfs_core.c \
libzfs_core_compat.c
libzfs_core_compat.c \
zfs_ioctl_compat.c
SRCS+= libzfs_compat.c