e415aa2846
If they are still needed, you can find them in the net/bsdrcmds port. This was proposed June, 20th and approved by various committers [1]. They have been marked as deprecated on CURRENT in r320644 [2] on July, 4th. Both stable/11 and release/11.1 contain the deprecation notice (thanks to allanjude@). Note that ruptime(1)/rwho(1)/rwhod(8) were initially thought to be part of rcmds but this was a mistake and those are therefore NOT removed. [1] https://lists.freebsd.org/pipermail/freebsd-arch/2017-June/018239.html [2] https://svnweb.freebsd.org/base?view=revision&revision=320644 Reviewed by: bapt, brooks Differential Revision: https://reviews.freebsd.org/D12573
52 lines
548 B
Makefile
52 lines
548 B
Makefile
# From: @(#)Makefile 8.1 (Berkeley) 5/31/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
SUBDIR= cat \
|
|
chflags \
|
|
chio \
|
|
chmod \
|
|
cp \
|
|
date \
|
|
dd \
|
|
df \
|
|
domainname \
|
|
echo \
|
|
ed \
|
|
expr \
|
|
freebsd-version \
|
|
getfacl \
|
|
hostname \
|
|
kenv \
|
|
kill \
|
|
ln \
|
|
ls \
|
|
mkdir \
|
|
mv \
|
|
pax \
|
|
pkill \
|
|
ps \
|
|
pwait \
|
|
pwd \
|
|
realpath \
|
|
rm \
|
|
rmdir \
|
|
setfacl \
|
|
sh \
|
|
sleep \
|
|
stty \
|
|
sync \
|
|
test \
|
|
uuidgen
|
|
|
|
SUBDIR.${MK_SENDMAIL}+= rmail
|
|
SUBDIR.${MK_TCSH}+= csh
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.arch.inc.mk>
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
.include <bsd.subdir.mk>
|