diff options
author | Emmanuel Vadot <manu@FreeBSD.org> | 2019-09-05 14:07:49 +0000 |
---|---|---|
committer | Emmanuel Vadot <manu@FreeBSD.org> | 2019-09-05 14:07:49 +0000 |
commit | c2a7c3bedd9f6d0d97918c7253df31722c7d47fa (patch) | |
tree | e8bf5e647efb0cae5702eed43fbac388d5a80463 /cddl/sbin | |
parent | 8d250cb461c13548e0a1fea4b5246dd4213bbe65 (diff) |
pkgbase: Force zfs(8) and zpool(8) to be in the runtime package
Those commands are needed to repair a FreeBSD installation so add them
to the runtime package
Reviewed by: bapt, gjb
Differential Revision: https://reviews.freebsd.org/D21498
Notes
Notes:
svn path=/head/; revision=351850
Diffstat (limited to 'cddl/sbin')
-rw-r--r-- | cddl/sbin/zfs/Makefile | 1 | ||||
-rw-r--r-- | cddl/sbin/zpool/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/cddl/sbin/zfs/Makefile b/cddl/sbin/zfs/Makefile index f07b7a33b41e..e3645bd362b7 100644 --- a/cddl/sbin/zfs/Makefile +++ b/cddl/sbin/zfs/Makefile @@ -2,6 +2,7 @@ .PATH: ${SRCTOP}/cddl/contrib/opensolaris/cmd/zfs +PACKAGE= runtime PROG= zfs MAN= zfs.8 zfs-program.8 SRCS= zfs_main.c zfs_iter.c diff --git a/cddl/sbin/zpool/Makefile b/cddl/sbin/zpool/Makefile index 0276258dcaf5..f4a3b9b6f5cc 100644 --- a/cddl/sbin/zpool/Makefile +++ b/cddl/sbin/zpool/Makefile @@ -4,6 +4,7 @@ .PATH: ${SRCTOP}/cddl/contrib/opensolaris/cmd/stat/common .PATH: ${SRCTOP}/sys/cddl/contrib/opensolaris/common/zfs +PACKAGE= runtime PROG= zpool MAN= zpool.8 zpool-features.7 SRCS= zpool_main.c zpool_vdev.c zpool_iter.c zpool_util.c zfs_comutil.c |