From 2d6c5614aab89a93c56ef1ebff6817a024d17476 Mon Sep 17 00:00:00 2001 From: Lexi Winter Date: Tue, 27 May 2025 08:35:49 +0100 Subject: [PATCH] move ch{own,grp}(8) and tee(1) to FreeBSD-runtime chown and chgrp are almost essential for system management; in particular, a lot of rc.d scripts rely on them. tee is quite commonly used in shell scripts, and is small enough that there's no real need for it to be in -utilities. PR: 287014 Reviewed by: dch, manu, des, emaste Approved by: des (mentor) Differential Revision: https://reviews.freebsd.org/D50497 --- usr.bin/tee/Makefile | 1 + usr.sbin/chown/Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/usr.bin/tee/Makefile b/usr.bin/tee/Makefile index 1e5781bef4d..fbfbb8e1c9c 100644 --- a/usr.bin/tee/Makefile +++ b/usr.bin/tee/Makefile @@ -1,5 +1,6 @@ .include +PACKAGE= runtime PROG= tee HAS_TESTS= diff --git a/usr.sbin/chown/Makefile b/usr.sbin/chown/Makefile index 3e6ce8bfbd8..4e26b9457fd 100644 --- a/usr.sbin/chown/Makefile +++ b/usr.sbin/chown/Makefile @@ -1,5 +1,6 @@ .include +PACKAGE= runtime PROG= chown LINKS= ${BINDIR}/chown /usr/bin/chgrp MAN= chgrp.1 chown.8