freebsd-dev/bin/Makefile
Mateusz Piotrowski e7ab133648 timeout: Move from /usr/bin to /bin
timeout(1) is used by /etc/rc.d/zfskeys. Unfortunately, having
timeout(1) installed in /usr/bin causes problems when /usr is an
encrypted ZFS partition.

Implementing timeout(1) in sh(1) is not trivial. A more elegant solution
is to move timeout(1) to /bin so that it is available to early services
in the boot process.

PR:		265221
Reviewed by:	allanjude, des, imp
Approved by:	allanjude, des, imp
Reported by:	Ivan <r4@sovserv.ru>
Fixes:	33ff39796f Add zfskeys rc.d script for auto-loading encryption keys
MFC after:	1 week
Relnotes:	yes
Sponsored by:	Modirum MDPay
Sponsored by:	Klara Inc.
Differential Revision:	https://reviews.freebsd.org/D38344
2023-02-02 18:34:35 +01:00

53 lines
559 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 \
timeout \
uuidgen
SUBDIR.${MK_SENDMAIL}+= rmail
SUBDIR.${MK_TCSH}+= csh
SUBDIR.${MK_TESTS}+= tests
.include <bsd.arch.inc.mk>
SUBDIR_PARALLEL=
.include <bsd.subdir.mk>