The branch main has been updated by ivy:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=2d6c5614aab89a93c56ef1ebff6817a024d17476

commit 2d6c5614aab89a93c56ef1ebff6817a024d17476
Author:     Lexi Winter <i...@freebsd.org>
AuthorDate: 2025-05-27 07:35:49 +0000
Commit:     Lexi Winter <i...@freebsd.org>
CommitDate: 2025-05-28 01:16:30 +0000

    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 1e5781bef4da..fbfbb8e1c9c3 100644
--- a/usr.bin/tee/Makefile
+++ b/usr.bin/tee/Makefile
@@ -1,5 +1,6 @@
 .include <src.opts.mk>
 
+PACKAGE= runtime
 PROG=  tee
 
 HAS_TESTS=
diff --git a/usr.sbin/chown/Makefile b/usr.sbin/chown/Makefile
index 3e6ce8bfbd8c..4e26b9457fd5 100644
--- a/usr.sbin/chown/Makefile
+++ b/usr.sbin/chown/Makefile
@@ -1,5 +1,6 @@
 .include <src.opts.mk>
 
+PACKAGE= runtime
 PROG=  chown
 LINKS= ${BINDIR}/chown /usr/bin/chgrp
 MAN=   chgrp.1 chown.8

Reply via email to